stage2: Extensively comment the source code
[gaul-genprog.git] / Makefile
blob06801e1f95d313cbeddea5ac52aaf424fb96c29b
1 CFLAGS=-std=gnu99 -g -Wall -Wno-switch
2 LIBS=-lgaul -lgaul_util
4 all: generator stage1 stage2
6 generator: generator.o
7 $(CC) $(LDFLAGS) -o $@ $^
9 stage1: stage1.o
10 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
12 stage2: stage2.o
13 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
15 clean:
16 rm -f *.o stage1 stage2 generator