diff options
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) |