diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2014-01-21 14:26:16 -0500 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2014-01-21 14:26:57 -0500 |
commit | 3ec90df09b7234c05c9c4f9abe57f44b3fdd2d5d (patch) | |
tree | 012f07ed9bf7e4ab5101975803bf7e0ceff5f732 /lecture_subdir_makefile | |
parent | 350a7f035e93df88a2472e953e82d05ad5753ae1 (diff) | |
download | makefile_templates-3ec90df09b7234c05c9c4f9abe57f44b3fdd2d5d.tar.gz makefile_templates-3ec90df09b7234c05c9c4f9abe57f44b3fdd2d5d.zip |
added quiz and lecture Makefiles
Diffstat (limited to 'lecture_subdir_makefile')
-rw-r--r-- | lecture_subdir_makefile/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lecture_subdir_makefile/Makefile b/lecture_subdir_makefile/Makefile new file mode 100644 index 0000000..6e5933f --- /dev/null +++ b/lecture_subdir_makefile/Makefile @@ -0,0 +1,28 @@ +# -*- make -*- + +# Default value so one can compile this standalone +TOPDIR ?= .. +include ./local.mk +include $(TOPDIR)/common.mk +include $(MAKEINCLUDE_DIR)/t2t.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 + + +dest_dir = $(DESTDIR)$(PREFIX)/$(PACKAGE_DIR) + +.DEFAULT_GOAL := all + +all: compile install + +compile: subdirs $(REQUIRED_TARGETS) + +clean: subdirs $(CLEAN_TARGETS) + +real_clean: subdirs clean $(REAL_CLEAN_TARGETS) + +install: subdirs $(INSTALL_TARGETS) + |