Forward the OpenWrt CPPFLAGS to the compile process. This fixes fortify sources support. Link: https://github.com/openwrt/openwrt/pull/22056 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
8 lines
105 B
Makefile
8 lines
105 B
Makefile
all: 6rdcalc
|
|
|
|
6rdcalc: 6rdcalc.c
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
clean:
|
|
rm -f 6rdcalc
|