Skip to content

Commit

Permalink
make stage / doc dirs since git doesn't let us check in empty dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
duckpilot committed Apr 2, 2010
1 parent 5966d3d commit b15b0ef
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
@@ -1,11 +1,13 @@
-include Makefile.conf -include Makefile.conf


all: all:
mkdir -p stage
for pkg in $(PKGLIST); do \ for pkg in $(PKGLIST); do \
$(MAKE) -C src/$$pkg all || exit; \ $(MAKE) -C src/$$pkg all || exit; \
done done


doc: doc:
mkdir -p doc
for pkg in $(PKGLIST); do \ for pkg in $(PKGLIST); do \
$(MAKE) -C src/$$pkg doc || exit; \ $(MAKE) -C src/$$pkg doc || exit; \
done done
Expand All @@ -26,8 +28,8 @@ clean:
$(MAKE) -C src/$$pkg clean || exit; \ $(MAKE) -C src/$$pkg clean || exit; \
done done
make -C examples clean make -C examples clean
rm -rf doc/* rm -rf doc
rm -rf stage/* rm -rf stage


distclean: clean distclean: clean
rm -rf Makefile.conf rm -rf Makefile.conf
Expand Down

0 comments on commit b15b0ef

Please sign in to comment.