radiosonde_auto_rx/scan/Makefile

14 wiersze
217 B
Makefile
Czysty Zwykły widok Historia

CFLAGS = -O3 -w -Wno-unused-variable -DNOC34C50 -DNOIMET1AB
2021-02-08 10:20:33 +00:00
LDLIBS = -lm
PROGRAMS := dft_detect
all: $(PROGRAMS)
dft_detect: dft_detect.o
dft_detect.o : CFLAGS += -Ofast
2021-02-08 10:20:33 +00:00
clean:
$(RM) $(PROGRAMS) $(PROGRAMS:=.o)