github.com/anchore/syft@v1.4.2-0.20240516191711-1bec1fc5d397/syft/pkg/cataloger/binary/test-fixtures/elf-test-fixtures/elfbinwithnestedlib/makefile (about) 1 CC = g++ 2 CFLAGS = -std=c++17 -Wall -Wextra -pedantic 3 BUILD_DIR := ./build 4 BIN_DIR := ./bin 5 LIB_DIR := $(BIN_DIR)/lib 6 7 8 9 all: testfixtures 10 11 testfixtures: 12 $(MAKE) -C elfsrc 13 14 clean: 15 rm -rf $(BUILD_DIR) $(BIN_DIR) 16 17 .PHONY: all clean testfixtures 18