2 CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Winline $(DEBUG)
4 all: bin/box bin/iwrapper
7 $(CC) $(LDFLAGS) -o $@ $<
9 bin/iwrapper: src/iwrapper.o
10 $(CC) $(LDFLAGS) -o $@ $<
13 rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
14 rm -f bin/box bin/iwrapper