out: ignore invalid font requests
[neatpost.git] / Makefile
blobd4e26ff42ce3e547b501890d5bac8944a42cbb20
1 # neatpost's default font directory
2 FDIR = /neatroff/font
4 CC = cc
5 CFLAGS = -Wall -O2 "-DTROFFFDIR=\"$(FDIR)\""
6 LDFLAGS =
7 OBJS = post.o out.o ps.o font.o dev.o clr.o
9 all: post
10 %.o: %.c post.h
11 $(CC) -c $(CFLAGS) $<
12 post: $(OBJS)
13 $(CC) -o $@ $(OBJS) $(LDFLAGS)
14 clean:
15 rm -f *.o post