aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordacctal <dacctalyt@gmail.com>2026-04-17 08:16:21 +0000
committerdacctal <dacctalyt@gmail.com>2026-04-17 08:16:21 +0000
commitc421fe8fb87e949bae1860f0d501cf8e89ce0f18 (patch)
tree7b2ec26ec674bf864feb80a38aa9b33c7401e479 /Makefile
parent574708a5f97907c4b4e67788d38f89fac0981b70 (diff)
started manifest template
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 33b2d35..07945b1 100644
--- a/Makefile
+++ b/Makefile
@@ -5,9 +5,11 @@ CXXFLAGS += $(shell pkg-config --cflags --libs luajit ) -I./include -L/usr/lib
default: pkgit
-pkgit: src/main.cc
+pkgit: src/*.cc
${CC} -o pkgit src/*.cc ${CXXFLAGS}
- chmod +x pkgit
+
+debug: src/*.cc
+ ${CC} -o pkgit src/*.cc ${CXXFLAGS} -g -O0
install: pkgit
install -d ${DESTDIR}${PREFIX}/bin