]> mj.ucw.cz Git - eval.git/blob - Makefile
Formatting...
[eval.git] / Makefile
1 #DEBUG=-ggdb
2 CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Winline $(DEBUG)
3
4 all: bin/box
5
6 bin/box: src/box.o
7         $(CC) $(LDFLAGS) -o $@ $<
8
9 clean:
10         rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
11         rm -f bin/box