From ab15f92fbe20951c7e04cadbe7ee50de2950f96b Mon Sep 17 00:00:00 2001 From: Chase Date: Sat, 19 Oct 2019 21:45:16 -0500 Subject: [PATCH] include: add makefile --- cde/include/cppfile.tmpl | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 cde/include/cppfile.tmpl diff --git a/cde/include/cppfile.tmpl b/cde/include/cppfile.tmpl new file mode 100644 index 000000000..67c6a2342 --- /dev/null +++ b/cde/include/cppfile.tmpl @@ -0,0 +1,7 @@ +CLEANFILES += $(CPPTARGET) + +all:: $(CPPTARGET) + +$(CPPTARGET):: $(CPPSRC) + $(RM) $@ + $(CPP) -P -DXCOMM=# $(SCRIPTFLAGS) < $(CPPSRC) > $@