You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
605 B

# this file is under GNU GPL 3.0, see LICENSE.txt
include Makefile.conf
-include local.conf
TARGET?=libpEpAdapter.a
PEPENGINE_IN?=$(HOME)
CXXFLAGS += -I$(HOME)/include -std=c++14 -O0 -g
SOURCE=$(wildcard *.cc)
OBJECTS=$(subst .cc,.o,$(SOURCE))
WITHOUT_TESTS=$(patsubst test%.o,,$(OBJECTS))
all: $(TARGET)
%.o: %.cc %.hh
$(CXX) $(CXXFLAGS) -c $<
$(TARGET): $(WITHOUT_TESTS)
ar -rc $@ $^
.PHONY: clean test
clean:
rm -f $(TARGET) $(OBJECTS) *.a test_adapter
test: test_adapter
./test_adapter
test_adapter: test_adapter.o $(TARGET)
$(CXX) -o $@ -L$(HOME)/lib -lpEpEngine -L. -lpEpAdapter $<