15 lines
189 B
Makefile
15 lines
189 B
Makefile
CXXFLAGS+= -std=c++23
|
|
LDLIBS+= -lalepha
|
|
LDFLAGS+= -L Alepha/build-debug -Wl,-rpath,./Alepha/build-debug
|
|
CPPFLAGS+= -I . -g -O0
|
|
|
|
all: test ipam
|
|
|
|
test:
|
|
|
|
run: ipam
|
|
./ipam
|
|
|
|
clean:
|
|
${RM} ipam
|