]> git.llucax.com Git - software/ev.d.git/blob - Makefile
Use auto when getting the default loop in the test.
[software/ev.d.git] / Makefile
1
2 all: test
3
4 test.o: test.d ev.d
5         gdc -c -Wall -ggdb test.d
6
7 ev.o: ev.d
8         gdc -c -Wall -ggdb ev.d
9
10 test: test.o ev.o
11         gdc -o test -lev test.o ev.o
12
13 clean:
14         $(RM) -v *.o test
15
16 .PHONY: clean all
17