summaryrefslogtreecommitdiff
path: root/test/Makefile.in
blob: cec3f3dcc94e3a75c1e451ba970ee88b0c608f20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
CFLAGS = -fPIC -g @GCC_CFLAGS@ @EAGLE_CFLAGS@
LDLIBS = @EAGLE_LIBS@ -ldl

prefix = @prefix@
exec_prefix = @exec_prefix@

all : gears texture

gears_objs = gears.o setup.o

gears : ../libeagle.so $(gears_objs)
	gcc -o $@ -L.. -leagle $(LDLIBS) -lm $(gears_objs)

texture_objs = texture.o setup.o

texture : ../libeagle.so $(texture_objs)
	gcc -o $@ -L.. -leagle $(LDLIBS) -lm $(texture_objs)

clean :
	rm -f *.o glapi/*.o libeagle.so test

Makefile : Makefile.in
	../config.status $@