'make clean' should clean examples too.

'make' however should /not/ build examples.



git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10224 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Greg Ercolano 2014-08-01 20:56:09 +00:00
parent d785f5b4e8
commit fbfac0f6cc
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ depend: makeinclude
clean:
-$(RM) core *.o
for dir in $(DIRS); do\
for dir in examples $(DIRS); do\
echo "=== cleaning $$dir ===";\
(cd $$dir; $(MAKE) $(MFLAGS) clean) || exit 1;\
done