pulling everything up a level

This commit is contained in:
Dan Buch
2009-11-18 19:06:19 -05:00
parent 8bbc2c1ea5
commit 5860982824
62 changed files with 0 additions and 0 deletions

21
Makefile Normal file
View File

@@ -0,0 +1,21 @@
# The top level Makefile
all:
cd JustForFun && $(MAKE)
cd basics && $(MAKE)
cd forms && $(MAKE)
cd menus && $(MAKE)
cd panels && $(MAKE)
@echo
@echo "*********************************************"
@echo "All files Built"
@echo "Please move to demo/exe directory"
@echo "Execute each file to see examples in action"
@echo "*********************************************"
@echo
clean:
cd JustForFun && $(MAKE) clean
cd basics && $(MAKE) clean
cd forms && $(MAKE) clean
cd menus && $(MAKE) clean
cd panels && $(MAKE) clean