diff options
Diffstat (limited to 'libnet/Makefile')
-rw-r--r-- | libnet/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
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 |