aboutsummaryrefslogtreecommitdiff
path: root/libs/libnet/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libnet/Makefile')
-rw-r--r--libs/libnet/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/libs/libnet/Makefile b/libs/libnet/Makefile
new file mode 100644
index 0000000..85c8fab
--- /dev/null
+++ b/libs/libnet/Makefile
@@ -0,0 +1,20 @@
+# MIT License, Copyright (c) 2020 Marvin Borner
+
+COBJS = dns.o http.o ip.o
+CC = ccache ../../cross/opt/bin/i686-elf-gcc
+LD = ccache ../../cross/opt/bin/i686-elf-ld
+AR = ccache ../../cross/opt/bin/i686-elf-ar
+
+CFLAGS = $(CFLAGS_DEFAULT) -I../ -I../libc/inc/ -Duserspace
+
+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