* Now you can actually use a $(NAME) with spaces in it. Might not work for the

$(INSTALL_DIR) anymore, though.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33836 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2009-10-29 21:30:56 +00:00
parent ad1064afb0
commit b4c6a820b9
+3 -3
View File
@@ -202,7 +202,7 @@ endef
ifeq ($(RSRCS), ) ifeq ($(RSRCS), )
DO_RSRCS := DO_RSRCS :=
else else
DO_RSRCS := $(XRES) -o "$(TARGET)" $(RSRCS) DO_RSRCS := $(XRES) -o $(TARGET) $(RSRCS)
endif endif
@@ -284,7 +284,7 @@ clean :: FORCE
# remove just the application from the object folder # remove just the application from the object folder
rmapp :: rmapp ::
-rm -f "$(TARGET)" -rm -f $(TARGET)
# make it easy to install drivers for testing # make it easy to install drivers for testing
USER_BIN_PATH = /boot/home/config/add-ons/kernel/drivers/bin USER_BIN_PATH = /boot/home/config/add-ons/kernel/drivers/bin
@@ -302,5 +302,5 @@ ifeq ($(INSTALL_DIR), )
@echo "No install directory specified for \"$(NAME)\" (INSTALL_DIR is empty)" >&2 @echo "No install directory specified for \"$(NAME)\" (INSTALL_DIR is empty)" >&2
else else
mkdir -p "$(INSTALL_DIR)" mkdir -p "$(INSTALL_DIR)"
cp "$(TARGET)" "$(INSTALL_DIR)/$(NAME)" cp $(TARGET) $(INSTALL_DIR)/$(NAME)
endif endif