diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2020-09-04 22:55:29 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2020-09-04 22:55:29 -0400 |
commit | 728fec5d4474f440f8ef229901e4c2ca02bd83ea (patch) | |
tree | f3aa4044592349cb04a2c7b1f6edb6d8e9381145 | |
parent | f08649b6aa6c359c0ed5903c5809a8e7dfbf83b0 (diff) | |
download | makefile_templates-728fec5d4474f440f8ef229901e4c2ca02bd83ea.tar.gz makefile_templates-728fec5d4474f440f8ef229901e4c2ca02bd83ea.zip |
added 2nd layer makefile
-rw-r--r-- | subdir_makefile/Makefile2ndLayer | 32 |
1 files changed, 32 insertions, 0 deletions
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) + |