Revision | 7e4df720cff76025a8791ed8e84b05702a51decd (tree) |
---|---|
Time | 2014-01-10 11:22:55 |
Author | Katsuhiko Nishimra <ktns.87@gmai...> |
Commiter | Katsuhiko Nishimra |
clean target calls clean target on the build directory. #28588
git-svn-id: https://svn.sourceforge.jp/svnroot/molds/branches/automake@1631 1136aad2-a195-0410-b898-f5ea1d11b9d8
@@ -17,7 +17,7 @@ | ||
17 | 17 | #// along with MolDS. If not, see <http://www.gnu.org/licenses/>. // |
18 | 18 | #//************************************************************************// |
19 | 19 | |
20 | -.PHONY: all clean | |
20 | +.PHONY: all clean distclean | |
21 | 21 | CONFIGURE_OPTIONS = |
22 | 22 | CFLAGS = |
23 | 23 | CXXFLAGS = |
@@ -52,4 +52,7 @@ $(OUTPUT): build/$(OUTPUT) | ||
52 | 52 | install $< $@ |
53 | 53 | |
54 | 54 | clean: |
55 | + +make -C build clean | |
56 | + | |
57 | +distclean: | |
55 | 58 | rm -rf build $(OUTPUT) |