1 2FILES= \ 3 test-all.bin \ 4 test-backtrace.bin \ 5 test-bionic.bin \ 6 test-dwarf.bin \ 7 test-fortify-source.bin \ 8 test-sync-compare-and-swap.bin \ 9 test-glibc.bin \ 10 test-gtk2.bin \ 11 test-gtk2-infobar.bin \ 12 test-hello.bin \ 13 test-libaudit.bin \ 14 test-libbfd.bin \ 15 test-liberty.bin \ 16 test-liberty-z.bin \ 17 test-cplus-demangle.bin \ 18 test-libelf.bin \ 19 test-libelf-getphdrnum.bin \ 20 test-libelf-mmap.bin \ 21 test-libnuma.bin \ 22 test-libperl.bin \ 23 test-libpython.bin \ 24 test-libpython-version.bin \ 25 test-libslang.bin \ 26 test-libunwind.bin \ 27 test-libunwind-debug-frame.bin \ 28 test-stackprotector-all.bin \ 29 test-timerfd.bin \ 30 test-libdw-dwarf-unwind.bin 31 32CC := $(CROSS_COMPILE)gcc -MD 33PKG_CONFIG := $(CROSS_COMPILE)pkg-config 34 35all: $(FILES) 36 37BUILD = $(CC) $(CFLAGS) -o $(OUTPUT)$@ $(patsubst %.bin,%.c,$@) $(LDFLAGS) 38 39############################### 40 41test-all.bin: 42 $(BUILD) -Werror -fstack-protector-all -O2 -Werror -D_FORTIFY_SOURCE=2 -ldw -lelf -lnuma -lelf -laudit -I/usr/include/slang -lslang $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null) $(FLAGS_PERL_EMBED) $(FLAGS_PYTHON_EMBED) -DPACKAGE='"perf"' -lbfd -ldl 43 44test-hello.bin: 45 $(BUILD) 46 47test-stackprotector-all.bin: 48 $(BUILD) -Werror -fstack-protector-all 49 50test-fortify-source.bin: 51 $(BUILD) -O2 -Werror -D_FORTIFY_SOURCE=2 52 53test-bionic.bin: 54 $(BUILD) 55 56test-libelf.bin: 57 $(BUILD) -lelf 58 59test-glibc.bin: 60 $(BUILD) 61 62test-dwarf.bin: 63 $(BUILD) -ldw 64 65test-libelf-mmap.bin: 66 $(BUILD) -lelf 67 68test-libelf-getphdrnum.bin: 69 $(BUILD) -lelf 70 71test-libnuma.bin: 72 $(BUILD) -lnuma 73 74test-libunwind.bin: 75 $(BUILD) -lelf 76 77test-libunwind-debug-frame.bin: 78 $(BUILD) -lelf 79 80test-libaudit.bin: 81 $(BUILD) -laudit 82 83test-libslang.bin: 84 $(BUILD) -I/usr/include/slang -lslang 85 86test-gtk2.bin: 87 $(BUILD) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null) 88 89test-gtk2-infobar.bin: 90 $(BUILD) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null) 91 92grep-libs = $(filter -l%,$(1)) 93strip-libs = $(filter-out -l%,$(1)) 94 95PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null) 96PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS)) 97PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS)) 98PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null` 99FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS) 100 101test-libperl.bin: 102 $(BUILD) $(FLAGS_PERL_EMBED) 103 104test-libpython.bin: 105 $(BUILD) 106 107test-libpython-version.bin: 108 $(BUILD) 109 110test-libbfd.bin: 111 $(BUILD) -DPACKAGE='"perf"' -lbfd -lz -liberty -ldl 112 113test-liberty.bin: 114 $(CC) -o $(OUTPUT)$@ test-libbfd.c -DPACKAGE='"perf"' -lbfd -ldl -liberty 115 116test-liberty-z.bin: 117 $(CC) -o $(OUTPUT)$@ test-libbfd.c -DPACKAGE='"perf"' -lbfd -ldl -liberty -lz 118 119test-cplus-demangle.bin: 120 $(BUILD) -liberty 121 122test-backtrace.bin: 123 $(BUILD) 124 125test-timerfd.bin: 126 $(BUILD) 127 128test-libdw-dwarf-unwind.bin: 129 $(BUILD) 130 131test-sync-compare-and-swap.bin: 132 $(BUILD) -Werror 133 134-include *.d 135 136############################### 137 138clean: 139 rm -f $(FILES) *.d 140