1 # SPDX-License-Identifier: GPL-2.0 1 # SPDX-License-Identifier: GPL-2.0 2 2 3 include ../Makefile.deps 3 include ../Makefile.deps 4 4 5 CC=gcc 5 CC=gcc 6 CFLAGS=-std=gnu11 -O2 -W -Wall -Wextra -Wno-un 6 CFLAGS=-std=gnu11 -O2 -W -Wall -Wextra -Wno-unused-parameter -Wshadow \ 7 -I../lib/ -I../generated/ -idirafter $ 7 -I../lib/ -I../generated/ -idirafter $(UAPI_PATH) 8 ifeq ("$(DEBUG)","1") 8 ifeq ("$(DEBUG)","1") 9 CFLAGS += -g -fsanitize=address -fsanitize=l 9 CFLAGS += -g -fsanitize=address -fsanitize=leak -static-libasan 10 endif 10 endif 11 11 12 LDLIBS=../lib/ynl.a ../generated/protos.a !! 12 LDLIBS=-lmnl ../lib/ynl.a ../generated/protos.a 13 13 14 SRCS=$(wildcard *.c) 14 SRCS=$(wildcard *.c) 15 BINS=$(patsubst %.c,%,${SRCS}) 15 BINS=$(patsubst %.c,%,${SRCS}) 16 16 17 include $(wildcard *.d) 17 include $(wildcard *.d) 18 18 19 all: $(BINS) 19 all: $(BINS) 20 20 21 CFLAGS_page-pool=$(CFLAGS_netdev) !! 21 $(BINS): ../lib/ynl.a ../generated/protos.a 22 << 23 $(BINS): ../lib/ynl.a ../generated/protos.a $( << 24 @echo -e '\tCC sample $@' 22 @echo -e '\tCC sample $@' 25 @$(COMPILE.c) $(CFLAGS_$@) $@.c -o $@. 23 @$(COMPILE.c) $(CFLAGS_$@) $@.c -o $@.o 26 @$(LINK.c) $@.o -o $@ $(LDLIBS) 24 @$(LINK.c) $@.o -o $@ $(LDLIBS) 27 25 28 clean: 26 clean: 29 rm -f *.o *.d *~ 27 rm -f *.o *.d *~ 30 28 31 distclean: clean !! 29 hardclean: clean 32 rm -f $(BINS) 30 rm -f $(BINS) 33 31 34 .PHONY: all clean distclean !! 32 .PHONY: all clean 35 .DEFAULT_GOAL=all 33 .DEFAULT_GOAL=all
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.