vger/Makefile

19 lines
376 B
Makefile
Raw Normal View History

PREFIX?=/usr/local/
CFLAGS += -pedantic -Wall -Wextra -Wmissing-prototypes \
-Wstrict-prototypes -Wwrite-strings
2020-12-01 22:39:05 +00:00
all: vger
clean:
2020-12-04 18:29:44 +00:00
rm -f vger *.core *.o
vger: main.o mimes.o opts.h
2020-12-04 18:29:44 +00:00
${CC} -o vger main.o mimes.o
install: vger
install -o root -g wheel vger ${PREFIX}/bin/
2020-12-03 20:40:16 +00:00
install -o root -g wheel vger.8 ${PREFIX}/man/man8/
2020-12-01 22:39:05 +00:00
test: vger
cd tests && sh test.sh