From 2981f57ae65e60a8f4f9393d20b19158d7f0304e Mon Sep 17 00:00:00 2001 From: Nedko Arnaudov Date: Tue, 4 Jan 2005 20:50:06 +0000 Subject: [PATCH] Use .exe postfix when building on non-windows hosts too. We are always building Win32 executable. svn path=/trunk/; revision=12798 --- rosapps/sysutils/regexpl/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rosapps/sysutils/regexpl/Makefile b/rosapps/sysutils/regexpl/Makefile index 947e74f97c3..23e93756e3b 100644 --- a/rosapps/sysutils/regexpl/Makefile +++ b/rosapps/sysutils/regexpl/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.13 2004/12/29 00:31:45 gvg Exp $ +# $Id$ # # ReactOS makefile for RegExpl # @@ -9,7 +9,7 @@ include $(PATH_TO_TOP)/rules.mak TARGET_NAME=regexpl -all: $(TARGET_NAME)$(EXE_POSTFIX) +all: $(TARGET_NAME).exe ROS_DIR=../../../reactos ROS_INC=$(ROS_DIR)/include @@ -52,12 +52,12 @@ OBJECTS = \ CLEAN_FILES = \ *.o \ - $(TARGET_NAME)$(EXE_POSTFIX) \ + $(TARGET_NAME).exe \ $(TARGET_NAME).sym -$(TARGET_NAME)$(EXE_POSTFIX): $(OBJECTS) - $(CXX) -Wl,--subsystem,console -o $(TARGET_NAME)$(EXE_POSTFIX) $(OBJECTS)$(IMPORT_KERNEL32) $(IMPORT_USER32) - $(NM) --numeric-sort $(TARGET_NAME)$(EXE_POSTFIX) > $(TARGET_NAME).sym +$(TARGET_NAME).exe: $(OBJECTS) + $(CXX) -Wl,--subsystem,console -o $(TARGET_NAME).exe $(OBJECTS)$(IMPORT_KERNEL32) $(IMPORT_USER32) + $(NM) --numeric-sort $(TARGET_NAME).exe > $(TARGET_NAME).sym clean: $(CLEAN_FILES:%=%_clean)