fixed makefile for mingw systems, make is no longer make.exe, it is mingw32-make.exe, fixed this permanently by changing everything to $(MAKE)

svn path=/trunk/; revision=6242
This commit is contained in:
Richard Campbell 2003-10-05 05:51:26 +00:00
parent 26e9ba9eda
commit 5ba34e8e3d

View file

@ -61,19 +61,19 @@ dist: clean_dist_dir make_dist_dirs $(APPS:%=%_dist)
# Applications # Applications
# #
$(APPS): %: $(APPS): %:
make -C $* $(MAKE) -C $*
$(APPS:%=%_clean): %_clean: $(APPS:%=%_clean): %_clean:
make -C $* clean $(MAKE) -C $* clean
$(APPS:%=%_floppy): %_floppy: $(APPS:%=%_floppy): %_floppy:
make -C $* floppy $(MAKE) -C $* floppy
$(APPS:%=%_dist): %_dist: $(APPS:%=%_dist): %_dist:
make -C $* dist $(MAKE) -C $* dist
$(APPS:%=%_install): %_install: $(APPS:%=%_install): %_install:
make -C $* install $(MAKE) -C $* install
.PHONY: $(APPS) $(APPS:%=%_clean) $(APPS:%=%_floppy) $(APPS:%=%_dist) $(APPS:%=%_install) .PHONY: $(APPS) $(APPS:%=%_clean) $(APPS:%=%_floppy) $(APPS:%=%_dist) $(APPS:%=%_install)