summaryrefslogtreecommitdiff
path: root/http/pp/Makefile
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-08-13 16:33:51 +0100
committerJoe Carstairs <me@joeac.net>2026-08-13 16:33:51 +0100
commit62e6bab910297aa15d76eb735ce3dd9b5417e26e (patch)
treea98b5fb2c2663e08c21475b1092ccec395e2d87e /http/pp/Makefile
parentf9272fdf3ea23070583c944b110a7b8f16c5a4ff (diff)
remove website/capsule content
Diffstat (limited to 'http/pp/Makefile')
-rw-r--r--http/pp/Makefile29
1 files changed, 0 insertions, 29 deletions
diff --git a/http/pp/Makefile b/http/pp/Makefile
deleted file mode 100644
index afc122f..0000000
--- a/http/pp/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-CC = cc
-LD = ${CC}
-
-PREFIX = /usr/local
-MANPREFIX = ${PREFIX}/share/man
-
-CFLAGS = -Wall -Wextra -pedantic
-
-pp: pp.o
-pp.o: pp.c
-
-.c.o:
- $(CC) $(CPPFLAGS) $< $(CFLAGS) -c -o $@
-.o:
- $(LD) $< $(LDFLAGS) -o $@
-
-clean:
- rm -rf pp *.o
-
-install: pp pp.1
- mkdir -p $(DESTDIR)$(PREFIX)/bin
- mkdir -p $(DESTDIR)$(MANPREFIX)/man1
- cp pp $(DESTDIR)$(PREFIX)/bin/pp
- cp pp.1 $(DESTDIR)$(MANPREFIX)/man1/
- chmod 755 $(DESTDIR)$(PREFIX)/bin/pp
-
-uninstall:
- rm $(DESTDIR)$(PREFIX)/bin/pp
- rm $(DESTDIR)$(MANPREFIX)/man1/pp.1