From 728fec5d4474f440f8ef229901e4c2ca02bd83ea Mon Sep 17 00:00:00 2001 From: "Eugeniy E. Mikhailov" Date: Fri, 4 Sep 2020 22:55:29 -0400 Subject: added 2nd layer makefile --- subdir_makefile/Makefile2ndLayer | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 subdir_makefile/Makefile2ndLayer diff --git a/subdir_makefile/Makefile2ndLayer b/subdir_makefile/Makefile2ndLayer new file mode 100644 index 0000000..6e6b59f --- /dev/null +++ b/subdir_makefile/Makefile2ndLayer @@ -0,0 +1,32 @@ +# -*- make -*- + +# Default value so one can compile this standalone +TOPDIR ?= ../.. +include ./local.mk +include $(TOPDIR)/common.mk +dest_dir = $(DESTDIR)$(PREFIX)/$(PACKAGE_DIR) + +include $(MAKEINCLUDE_DIR)/t2t.mk +include $(MAKEINCLUDE_DIR)/pandoc.mk +include $(MAKEINCLUDE_DIR)/rem.mk +include $(MAKEINCLUDE_DIR)/beamer_lecture.mk +include $(MAKEINCLUDE_DIR)/tex.mk +include $(MAKEINCLUDE_DIR)/css.mk +include $(MAKEINCLUDE_DIR)/raw.mk +include $(MAKEINCLUDE_DIR)/subdirs.mk +include $(MAKEINCLUDE_DIR)/dest_dirs.mk + + +.DEFAULT_GOAL := all +.PHONY: all compile clean real_clean install subdirs + +all: compile install + +compile: subdirs $(REQUIRED_TARGETS) + +clean: subdirs $(CLEAN_TARGETS) + +real_clean: subdirs clean $(REAL_CLEAN_TARGETS) + +install: subdirs $(INSTALL_TARGETS) + -- cgit v1.2.3