aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 06ebd3fce54d4acebbe5c9a7805975730a0013c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.POSIX:
CC = gcc
CFLAGS = -O2 -Wall
OBJS = badroff.o buf.o ll.o sb.o
phrase-circuit.txt: badroff phrase-circuit.src
	./badroff phrase-circuit.src > phrase-circuit.txt
badroff: $(OBJS)
badroff.o: badroff.c buf.h ll.h sb.h
buf.o: buf.c buf.h
ll.o: ll.c ll.h
sb.o: sb.c sb.h
clean:
	rm -f badroff $(OBJS) phrase-circuit.txt