aboutsummaryrefslogtreecommitdiff
path: root/extensions/makefile
blob: c5f30e1cf3fa894862fe0c3adc15a2c712f88d8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC= g++
CXXFLAGS= -c -g -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