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 | |
parent | 350a7f035e93df88a2472e953e82d05ad5753ae1 (diff) | |
download | makefile_templates-3ec90df09b7234c05c9c4f9abe57f44b3fdd2d5d.tar.gz makefile_templates-3ec90df09b7234c05c9c4f9abe57f44b3fdd2d5d.zip |
added quiz and lecture Makefiles
-rw-r--r-- | lecture_subdir_makefile/Makefile (renamed from subdir_makefile/Makefile) | 0 | ||||
-rw-r--r-- | quiz_subdir_makefile/Makefile | 28 |
2 files changed, 28 insertions, 0 deletions
diff --git a/subdir_makefile/Makefile b/lecture_subdir_makefile/Makefile index 6e5933f..6e5933f 100644 --- a/subdir_makefile/Makefile +++ b/lecture_subdir_makefile/Makefile diff --git a/quiz_subdir_makefile/Makefile b/quiz_subdir_makefile/Makefile new file mode 100644 index 0000000..e8aaaf8 --- /dev/null +++ b/quiz_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) + |