From 4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b Mon Sep 17 00:00:00 2001 From: manuel Date: Tue, 27 Mar 2012 11:51:08 +0200 Subject: reorganize file structure to match the upstream requirements --- pintos-progos/Makefile | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 pintos-progos/Makefile (limited to 'pintos-progos/Makefile') diff --git a/pintos-progos/Makefile b/pintos-progos/Makefile deleted file mode 100644 index 3ba9194..0000000 --- a/pintos-progos/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -BUILD_SUBDIRS = threads userprog vm filesys intro - -all:: - @echo "Run 'make' in subdirectories: $(BUILD_SUBDIRS)." - @echo "This top-level make has only 'clean' targets." - -CLEAN_SUBDIRS = $(BUILD_SUBDIRS) examples utils - -clean:: - for d in $(CLEAN_SUBDIRS); do $(MAKE) -C $$d $@; done - rm -f TAGS tags - -distclean:: clean - find . -name '*~' -exec rm '{}' \; - -TAGS_SUBDIRS = $(BUILD_SUBDIRS) devices lib -TAGS_SOURCES = find $(TAGS_SUBDIRS) -name \*.[chS] -print - -TAGS:: - etags --members `$(TAGS_SOURCES)` - -tags:: - ctags -T --no-warn `$(TAGS_SOURCES)` - -cscope.files:: - $(TAGS_SOURCES) > cscope.files - -cscope:: cscope.files - cscope -b -q -k -- cgit v1.2.3