aboutsummaryrefslogtreecommitdiff
path: root/libs/libnet/Makefile
blob: 7094875d3c5c8b866c3be1561e25ad1a852ab8e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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/ -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