Don't build checkdll when cross-compiling

This commit is contained in:
Tor Lillqvist
2011-05-15 23:49:09 +03:00
committed by Tor Lillqvist
parent eca6196cd9
commit dfd11a2696

View File

@@ -40,7 +40,7 @@ NO_DEFAULT_STL=TRUE
# --- Files --------------------------------------------------------
.IF "$(GUI)"=="UNX" && "$(OS)"!="IOS"
.IF "$(GUI)"=="UNX" && "$(CROSS_COMPILING)"==""
LIBSALCPPRT=$(0)
APP1TARGET = checkdll
APP1OBJS = $(OBJ)$/checkdll.obj
@@ -52,7 +52,7 @@ STDLIB += -ldl
.IF "$(OS)"=="NETBSD"
APP1STDLIBS += -Wl,--whole-archive -lgcc -Wl,--no-whole-archive
.ENDIF
.ENDIF # "$(GUI)"=="UNX"
.ENDIF # "$(GUI)"=="UNX" && "$(CROSS_COMPILING)"==""
# --- Targets ------------------------------------------------------