summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2021-06-22 18:48:16 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2021-06-22 18:48:16 +0200
commit8a35724397e84e9d23a44a4f2d3a3e73fe25d9e7 (patch)
treedd73869b71aae0b05cabc833caa9b161c86b24ff /Makefile
parentf8a52e96685d636be956b5f89d6f493856c0810f (diff)
Add parameters to add, delete and list build configurations.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4b43083..14d909e 100644
--- a/Makefile
+++ b/Makefile
@@ -24,8 +24,8 @@ CXXFLAGS = -g -O3 -std=c++17 -I.
libcppbuild.a: $(OBJ)
ar rcs $@ $(OBJ)
-cppbuild: cppbuild.cc subdir/cppbuild.cc libcppbuild.a
- g++ $(CXXFLAGS) -pthread cppbuild.cc subdir/cppbuild.cc libcppbuild.a -o $@
+cppbuild: libcppbuild.a
+ g++ $(CXXFLAGS) -pthread libcppbuild.a -o $@
clean:
rm -f libcppbuild.a $(OBJ) cppbuild $(DEPFILES)