github.com/anchore/syft@v1.4.2-0.20240516191711-1bec1fc5d397/syft/pkg/cataloger/binary/test-fixtures/elf-test-fixtures/elfbinwithsisterlib/makefile (about)

     1  CC = g++
     2  CFLAGS = -std=c++17 -Wall -Wextra -pedantic
     3  BUILD_DIR := ./build
     4  LIB_DIR := ./lib
     5  BIN_DIR := ./bin
     6  
     7  
     8  all: testfixtures
     9  
    10  testfixtures: 
    11  	$(MAKE) -C elfsrc1
    12  	$(MAKE) -C elfsrc2
    13  
    14  clean:
    15  	rm -rf $(BUILD_DIR) $(LIB_DIR) $(BIN_DIR)
    16  
    17  .PHONY: all clean testfixtures
    18