font: font_glyphput() can be static
[neatpost.git] / Makefile
blob96452a9a51030dc23318f16f2a31f510b707c93a
1 # neatpost's default font directory
2 FDIR=/root/troff/home/font
4 CC = cc
5 CFLAGS = -Wall -O2 "-DTROFFFDIR=\"$(FDIR)\""
6 LDFLAGS =
8 all: post
9 %.o: %.c post.h
10 $(CC) -c $(CFLAGS) $<
11 post: post.o out.o ps.o font.o dev.o clr.o
12 $(CC) -o $@ $^ $(LDFLAGS)
13 clean:
14 rm -f *.o post