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 /subdir_makefile | |
parent | 350a7f035e93df88a2472e953e82d05ad5753ae1 (diff) | |
download | makefile_templates-3ec90df09b7234c05c9c4f9abe57f44b3fdd2d5d.tar.gz makefile_templates-3ec90df09b7234c05c9c4f9abe57f44b3fdd2d5d.zip |
added quiz and lecture Makefiles
Diffstat (limited to 'subdir_makefile')
-rw-r--r-- | subdir_makefile/Makefile | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/subdir_makefile/Makefile b/subdir_makefile/Makefile deleted file mode 100644 index 6e5933f..0000000 --- a/subdir_makefile/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# -*- 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) - |