root/trunk/testeD/Makefile

Revision 75, 273 bytes (checked in by luke, 1 year ago)

Initial import of testeD

Line 
1 DC = gdmd
2 DFLAGS = -ItesteD
3
4 all: libtesteD.a
5
6 test: libtesteD.a main.o
7     $(CC) main.o -ltesteD -L. -lm -lpthread -lgphobos -o test
8
9 libtesteD.a: testeD/api.o testeD/unit.o testeD/suite.o
10     $(AR) r $@ $?
11
12 %.o:%.d
13     $(DC) -c $(DFLAGS) $< -of$@
14
15 clean:
16     rm -f *.o *.a */*.o test
Note: See TracBrowser for help on using the browser.