diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-22 18:48:16 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-22 18:48:16 +0200 |
commit | 8a35724397e84e9d23a44a4f2d3a3e73fe25d9e7 (patch) | |
tree | dd73869b71aae0b05cabc833caa9b161c86b24ff /Makefile | |
parent | f8a52e96685d636be956b5f89d6f493856c0810f (diff) |
Add parameters to add, delete and list build configurations.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |