275debd869
2009-02-02 09:09:07 +0100 tono r267246 : i#98723#: Less conditionals in libs.mk for mingw 2009-02-02 09:06:03 +0100 tono r267244 : i#98722#: Skip building ldump in mingw 2009-02-02 09:04:05 +0100 tono r267243 : i#98721#: Improve symbol extraction in mingw 2009-02-02 09:02:07 +0100 tono r267242 : i#98720#: Improve strip performance in mingw 2009-02-02 08:59:36 +0100 tono r267241 : i#98719#: Copy mingw multithread runtime in external 2009-02-02 08:55:09 +0100 tono r267240 : i#98718#: Cleanup cygwin workaround for mingw 2009-02-02 08:53:33 +0100 tono r267239 : i#98718#: Cleanup cygwin workaround for mingw 2009-02-02 08:50:36 +0100 tono r267237 : i#98717#: Avoid MSVC version check in mingw configure 2009-01-28 22:28:53 +0100 tono r267088 : i#97608#: Remove Guiddef.h inclusion 2009-01-28 22:24:23 +0100 tono r267087 : i#96980#: cairo dll name is different in mingw build 2009-01-28 22:19:19 +0100 tono r267086 : i#96731#: MinGW port fro embedserv update
53 lines
872 B
Makefile
53 lines
872 B
Makefile
PRJ=..
|
|
PRJNAME=external
|
|
TARGET=gcc3_specific
|
|
|
|
# ------------------------------------------------------------------
|
|
.INCLUDE: settings.mk
|
|
# ------------------------------------------------------------------
|
|
|
|
|
|
.IF "$(BUILD_SPECIAL)"==""
|
|
|
|
.IF "$(GUI)" == "WNT"
|
|
|
|
.IF "$(COM)" == "GCC"
|
|
|
|
all : $(BIN)$/mingwm10.dll
|
|
|
|
$(BIN)$/mingwm10.dll :
|
|
$(COPY) -p $(COMPATH)$/bin$/mingwm10.dll $(BIN)$/
|
|
|
|
.ENDIF
|
|
|
|
.ELSE
|
|
|
|
.IF "$(SYSTEM_STDLIBS)" != "YES" && "$(COMID)"=="gcc3"
|
|
|
|
.IF "$(OS)"!="MACOSX"
|
|
.IF "$(OS)"!="IRIX"
|
|
.IF "$(OS)"!="FREEBSD"
|
|
|
|
.EXPORT : CC
|
|
|
|
all .SEQUENTIAL : $(LB)$/libstdc++.so.$(SHORTSTDCPP3) $(LB)$/libgcc_s.so.1
|
|
|
|
|
|
$(LB)$/libstdc++.so.$(SHORTSTDCPP3) :
|
|
$(GCCINSTLIB) libstdc++.so.$(SHORTSTDCPP3) $(LB)
|
|
|
|
$(LB)$/libgcc_s.so.1 :
|
|
$(GCCINSTLIB) libgcc_s.so.1 $(LB)
|
|
|
|
.ENDIF
|
|
.ENDIF
|
|
.ENDIF
|
|
|
|
.ENDIF
|
|
|
|
.ENDIF
|
|
.ENDIF # "$(BUILD_SPECIAL)"==""
|
|
|
|
|
|
.INCLUDE: target.mk
|
|
|