aboutsummaryrefslogblamecommitdiff
path: root/extensions/makefile
blob: ca901e8fb7fe48259b0616d88d61893cdd5396f1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
       
                                                                                










                                             
CC= g++
CXXFLAGS= -c -g -O2 -std=c++11 -Wall -I../include -I/usr/include/freetype2 -fPIC

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