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