libscterm/tests/postmake.make
Bob Polis 72cc19c1b2 Update to modern project structure
Also, move progress tool into tests.
2024-12-03 17:20:29 +01:00

7 lines
228 B
Makefile

$(BUILDDIR)/%.o: ../src/%.cpp
ifeq ($(PRECOMPILE), 1)
$(CXX) $(CXXFLAGS) -o $@ -include precomp.hpp -MMD -MP -MT $@ -MF $(BUILDDIR)/$*.dep -c $<
else
$(CXX) $(CXXFLAGS) -o $@ -MMD -MP -MT $@ -MF $(BUILDDIR)/$*.dep -c $<
endif