From 033df3cf3863a2385643d56350a29c4874840411 Mon Sep 17 00:00:00 2001 From: hjp Date: Sat, 8 Jan 1994 18:05:49 +0000 Subject: [PATCH] Initial revision --- fortune/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 fortune/Makefile diff --git a/fortune/Makefile b/fortune/Makefile new file mode 100644 index 0000000..fa63ccf --- /dev/null +++ b/fortune/Makefile @@ -0,0 +1,16 @@ +CC = gcc +CFLAGS = -O2 + +BINDIR = /usr/local/bin + +fortune: fortune.c + $(CC) $(CFLAGS) -o fortune fortune.c -lant + +clean: + rm fortune core + +install: $(BINDIR)/fortune + +$(BINDIR)/fortune: fortune + cp fortune $(BINDIR)/fortune +