aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 84ead8348723ecf952cae26e7a9fc944bdb185d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
SHELL = /bin/sh
CXXFLAGS = -g -std=c++14 -Wall -Wextra -pedantic -static-libstdc++

all: sdn
%: %.cpp CMakeLists.txt
	$(CXX) $(CXXFLAGS) $< -o $@ `pkg-config --libs --cflags ncursesw` -lacl \
	`sed -ne 's/^project (\([^ )]*\).*/-DPROJECT_NAME="\1"/p' \
	-e 's/^set (version \([^ )]*\).*/-DPROJECT_VERSION="\1"/p' CMakeLists.txt`
clean:
	rm -f sdn

.PHONY: all clean