|
@@ -32,7 +32,8 @@ FILES= \
|
|
|
test-libbabeltrace.bin \
|
|
|
test-compile-32.bin \
|
|
|
test-compile-x32.bin \
|
|
|
- test-zlib.bin
|
|
|
+ test-zlib.bin \
|
|
|
+ test-lzma.bin
|
|
|
|
|
|
CC := $(CROSS_COMPILE)gcc -MD
|
|
|
PKG_CONFIG := $(CROSS_COMPILE)pkg-config
|
|
@@ -45,7 +46,7 @@ __BUILD = $(CC) $(CFLAGS) -Wall -Werror -o $(OUTPUT)$@ $(patsubst %.bin,%.c,$@)
|
|
|
###############################
|
|
|
|
|
|
test-all.bin:
|
|
|
- $(BUILD) -fstack-protector-all -O2 -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 -lz
|
|
|
+ $(BUILD) -fstack-protector-all -O2 -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 -lz -llzma
|
|
|
|
|
|
test-hello.bin:
|
|
|
$(BUILD)
|
|
@@ -152,6 +153,9 @@ test-compile-x32.bin:
|
|
|
test-zlib.bin:
|
|
|
$(BUILD) -lz
|
|
|
|
|
|
+test-lzma.bin:
|
|
|
+ $(BUILD) -llzma
|
|
|
+
|
|
|
-include *.d
|
|
|
|
|
|
###############################
|