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 $@