Add template files

This commit is contained in:
2024-12-23 16:18:39 +01:00
parent d2b64fdc5a
commit e55c019ef0
20 changed files with 869 additions and 0 deletions

6
tpl/tests/postmake.make Normal file
View File

@@ -0,0 +1,6 @@
$(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