femtoTCP/test/unit/Makefile

16 lines
219 B
Makefile
Raw Permalink Normal View History

2024-10-27 13:23:31 +01:00
LDFLAGS=-lcheck -lm -lpthread -lrt -ldl -lsubunit
CFLAGS=-g -Wall -Wextra -Werror -I../../ -DETHERNET
CC=gcc
all: unit
unit: unit.o
$(CC) -o $@ $^ $(LDFLAGS)
%.o: %.c
$(CC) $(CFLAGS) -c $<
clean:
rm -f *.o unit