ovni/Makefile

22 lines
298 B
Makefile
Raw Normal View History

2021-07-22 12:35:02 +02:00
CFLAGS=-fPIC
2021-07-19 15:11:41 +02:00
2021-07-22 12:35:02 +02:00
#CFLAGS+=-fsanitize=address
#LDFLAGS+=-fsanitize=address
#CFLAGS+=-g -O0
CFLAGS+=-O3
CFLAGS+=-fstack-protector-explicit
2021-07-19 15:11:41 +02:00
2021-07-22 12:35:02 +02:00
BIN=dump libovni.a prvth test_speed
2021-07-19 15:11:41 +02:00
all: $(BIN)
libovni.a: ovni.o
ar -crs $@ $^
dump: ovni.o dump.o
2021-07-22 12:35:02 +02:00
test_speed: test_speed.c ovni.o
2021-07-19 15:11:41 +02:00
clean:
rm -f *.o $(BIN)