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