neatroff.ms: mention -mgnu
[neatroff_make.git] / shape / Makefile
bloba384aba3fcf2161c49ea823e84b9c9927ea7f7be
1 CC = cc
2 CFLAGS = -Wall -O2
3 LDFLAGS =
4 OBJS = shape.o uc.o util.o
6 all: shape
7 %.o: %.c
8 $(CC) -c $(CFLAGS) $<
9 shape: $(OBJS)
10 $(CC) -o $@ $(OBJS) $(LDFLAGS)
11 clean:
12 rm -f *.o shape