From 29fb1c172b2b235a6484f23f8d5b391f877e98eb Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Tue, 11 Mar 2025 22:32:56 +0100 Subject: Added simple HTTPD server in C --- c-httpd/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 c-httpd/Makefile (limited to 'c-httpd/Makefile') diff --git a/c-httpd/Makefile b/c-httpd/Makefile new file mode 100644 index 0000000..0b90a47 --- /dev/null +++ b/c-httpd/Makefile @@ -0,0 +1,7 @@ +all: httpd + +httpd: httpd.c + gcc httpd.c -o httpd + +clean: + -rm httpd -- cgit v1.2.3