neatcc top-level makefile
[neatcc_make.git] / demo / Makefile
blobc685d3e632ed6736f12b414b5c714ea9ca14c592
1 CC = ../neatrun/neatcc
3 CFLAGS = -Wall -O2
4 LDFLAGS =
6 all: test
8 %.o: %.c
9 $(CC) -c $(CFLAGS) $<
10 test: test.o
11 $(CC) -o $@ test.o $(LDFLAGS)
12 clean:
13 rm -f *.o test