aboutsummaryrefslogtreecommitdiff
path: root/libs/libnet/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libnet/Makefile')
-rw-r--r--libs/libnet/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/libs/libnet/Makefile b/libs/libnet/Makefile
deleted file mode 100644
index 53cb7a9..0000000
--- a/libs/libnet/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-# MIT License, Copyright (c) 2020 Marvin Borner
-
-COBJS = dns.o http.o ip.o
-
-CFLAGS = $(CFLAGS_DEFAULT) -I$(LIBS) -I$(LIBS)/libc/inc/ -pie -fPIE -fPIC -DUSER
-
-all: libtxt
-
-%.o: %.c
- @$(CC) -c $(CFLAGS) $< -o $@
-
-libtxt: $(COBJS)
- @mkdir -p $(BUILD)
- @$(AR) rcs $(BUILD)/libnet.a $+
-
-clean:
- @find . -name "*.o" -type f -delete