21 lines
342 B
Makefile
21 lines
342 B
Makefile
|
|
AUTOMAKE_OPTIONS = foreign no-dependencies no-installinfo subdir-objects
|
|
|
|
CXXFLAGS = -std=c++23 -Wall -I. -pthread -D_GNU_SOURCE=1
|
|
LDFLAGS = -pthread
|
|
|
|
sbin_PROGRAMS = helmetd
|
|
|
|
helmetd_SOURCES = server.cpp \
|
|
service.cpp service.hpp \
|
|
tunnel.cpp tunnel.hpp
|
|
|
|
run: helmetd
|
|
./helmetd
|
|
|
|
clean-local:
|
|
rm -rf autom4te.cache
|
|
rm -f *~
|
|
rm -f *.o
|
|
|