From 4de3158c80864aa130ac6f701f4c28a2aa7bbf20 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 17 Jul 2019 21:25:15 -0400 Subject: move HTTP POST handling to separate file --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index dc379d9..d80c8f2 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,13 @@ .POSIX: CFLAGS=-static +OBJECTS=blog.o post.o all: blog +blog: $(OBJECTS) + $(CC) $(CFLAGS) -o $@ $(OBJECTS) $(LDFLAGS) $(LIBS) + install: blog strip blog doas cp -f blog /var/www/cgi-bin/blog -- cgit v1.2.1