aboutsummaryrefslogtreecommitdiff
path: root/extensions/makefile
blob: 4c6b3fe17891c652251179e97f6b87ba6b3cb500 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC= g++
CXXFLAGS= -c -std=c++11 -Wall -I../include -I/usr/include/freetype2

all: objects archive clean

objects:
	$(CC) *.cpp $(CXXFLAGS)
archive:
	$(AR) rcs libsmeltext.a *.o
clean:
	if ( test smanim.o ); then rm *.o; fi
clean-all: clean
	rm *.a