From 431c88102153b8b41a15a1105e291ecf161c030e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 18 Nov 2020 13:49:19 +0100 Subject: Started libnet --- libnet/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 libnet/Makefile (limited to 'libnet/Makefile') diff --git a/libnet/Makefile b/libnet/Makefile new file mode 100644 index 0000000..507a564 --- /dev/null +++ b/libnet/Makefile @@ -0,0 +1,21 @@ +# MIT License, Copyright (c) 2020 Marvin Borner + +COBJS = dns.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 + +WARNINGS = -Wall -Wextra -pedantic-errors -Wshadow -Wpointer-arith -Wwrite-strings -Wredundant-decls -Wnested-externs -Wno-long-long +CFLAGS = $(WARNINGS) -nostdlib -nostdinc -fno-builtin -mgeneral-regs-only -std=c99 -m32 -Iinc/ -I../libc/inc/ -fPIE -Duserspace -Ofast + +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 -- cgit v1.2.3