From 5ba34e8e3daa8beac860c1f2af88597ac5084c42 Mon Sep 17 00:00:00 2001 From: Richard Campbell Date: Sun, 5 Oct 2003 05:51:26 +0000 Subject: [PATCH] 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 --- rosapps/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rosapps/Makefile b/rosapps/Makefile index e1a8daab1de..4f6bc56bb14 100644 --- a/rosapps/Makefile +++ b/rosapps/Makefile @@ -61,19 +61,19 @@ dist: clean_dist_dir make_dist_dirs $(APPS:%=%_dist) # Applications # $(APPS): %: - make -C $* + $(MAKE) -C $* $(APPS:%=%_clean): %_clean: - make -C $* clean + $(MAKE) -C $* clean $(APPS:%=%_floppy): %_floppy: - make -C $* floppy + $(MAKE) -C $* floppy $(APPS:%=%_dist): %_dist: - make -C $* dist + $(MAKE) -C $* dist $(APPS:%=%_install): %_install: - make -C $* install + $(MAKE) -C $* install .PHONY: $(APPS) $(APPS:%=%_clean) $(APPS:%=%_floppy) $(APPS:%=%_dist) $(APPS:%=%_install)