Organized directory structure.
[agg.git] / tests_dev / Makefile
blob33b580fe4fef2b594206d5aa7fd3b1f9af39816c
1 -include ../Make.config
3 LDFLAGS=-lexpat
4 DEPS=../src/expat.o ../src/fail.o ../src/rss.o ../src/stack.o ../src/text.o ../src/layer.o ../src/fs.o
5 LIBS=
6 POBJ=tests.o
7 POUT=tests
9 all: $(POUT)
10 run: $(POUT)
11 ./$(POUT)
13 $(POUT): $(LIBS) $(POBJ)
14 $(CC) -I../src $(LDFLAGS) $(DEPS) $(LIBS) $(POBJ) -o $(POUT)
16 clean:
17 $(RM) -f $(LIBS) $(POBJ) $(POUT)
19 %.o: %.c
20 $(CC) $(CFLAGS) -c $<