diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-02-07 20:06:39 -0500 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-02-07 20:06:39 -0500 |
commit | 2bb3a1831abb86f1ae2c89335a1400a5d056bab8 (patch) | |
tree | 139c166b58a8c3dc66875a1fee8e0e9e0e125957 /subdir_makefile/Makefile2ndLayer | |
parent | d4ae3c6a5f436e0a8258af38ec9a56b7ef28ab94 (diff) | |
parent | b6862788b437a3c3198e466bc5d4ea33c253c9e1 (diff) | |
download | makefile_templates-2bb3a1831abb86f1ae2c89335a1400a5d056bab8.tar.gz makefile_templates-2bb3a1831abb86f1ae2c89335a1400a5d056bab8.zip |
Merge branch 'master' of qo.physics.wm.edu:makefile_templates
Diffstat (limited to 'subdir_makefile/Makefile2ndLayer')
-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) + |