summaryrefslogtreecommitdiff
path: root/c-httpd/Makefile
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2025-03-11 22:32:56 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2025-03-11 22:32:56 +0100
commit29fb1c172b2b235a6484f23f8d5b391f877e98eb (patch)
tree7c8008a2c692af9104e0a9e91358779db99e7d28 /c-httpd/Makefile
parent68ac646c552980e8119e0a789b83ba82d0a594a4 (diff)
downloadprobe-29fb1c172b2b235a6484f23f8d5b391f877e98eb.tar.gz
Added simple HTTPD server in C
Diffstat (limited to 'c-httpd/Makefile')
-rw-r--r--c-httpd/Makefile7
1 files changed, 7 insertions, 0 deletions
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