diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2017-07-14 21:49:32 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2017-07-14 21:49:32 +0200 |
commit | fb73fc8292d507e9d6f368da5f2c2ac3e3f85e45 (patch) | |
tree | 7dd42214e222460e9ca4e3261309a2133bff3926 /Makefile | |
parent | 8c658475b44eeb1a4e4867d203c73563eb029e8f (diff) | |
download | sdn-fb73fc8292d507e9d6f368da5f2c2ac3e3f85e45.tar.gz sdn-fb73fc8292d507e9d6f368da5f2c2ac3e3f85e45.tar.xz sdn-fb73fc8292d507e9d6f368da5f2c2ac3e3f85e45.zip |
Mark files that make use of POSIX ACLs
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ CXXFLAGS = -g -std=c++14 -Wall -Wextra -pedantic -static-libstdc++ all: sdn %: %.cpp CMakeLists.txt - $(CXX) $(CXXFLAGS) $< -o $@ `pkg-config --libs --cflags ncursesw` \ + $(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: |