block: don't put spaces around :
[ironout.git] / tests / Makefile
blobb7de285298db2df3ed810a120cedc05faa7547c6
1 CFLAGS = -std=c89 -pedantic -Wall -O2 -I..
2 LDFLAGS = -s
4 all: runtests test_hash
5 .c.o:
6 $(CC) -c $(CFLAGS) $<
7 runtests: runtests.o ../strutils.o
8 $(CC) $(LDFLAGS) -o $@ $^
9 test_hash: test_hash.o ../hash.o ../utils.o
10 $(CC) $(LDFLAGS) -o $@ $^
11 clean:
12 rm -f *.o