- Timestamp:
- May 20, 2016, 10:41:19 AM (9 years ago)
- Location:
- sip/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified sip/trunk/siputils.py ¶
r1570 r1576 873 873 qt5_rename = False 874 874 875 if sys.platform == "win32"and "shared" in self.config.qt_winconfig.split():875 if sys.platform in ("win32", "os2knix") and "shared" in self.config.qt_winconfig.split(): 876 876 if (mname in ("QtCore", "QtDeclarative", "QtDesigner", "QtGui", 877 877 "QtHelp", "QtMultimedia", "QtNetwork", "QtOpenGL", … … 1219 1219 if self.generator == "MINGW": 1220 1220 mfile.write(".SUFFIXES: .cpp .cxx .cc .C .c\n\n") 1221 elif self.generator == "UNIX":1221 elif self.generator in ("UNIX", "GNUMAKE"): 1222 1222 mfile.write(".SUFFIXES: .c .o .cpp .cc .cxx .C\n\n") 1223 1223 else: … … 1317 1317 """ 1318 1318 # Help package builders. 1319 if self.generator == "UNIX":1319 if self.generator in ("UNIX", "GNUMAKE"): 1320 1320 dst = "$(DESTDIR)" + dst 1321 1321 1322 1322 mfile.write("\t@%s %s " % (self.chkdir, _quote(dst))) 1323 1323 1324 if self.generator == "UNIX":1324 if self.generator in ("UNIX", "GNUMAKE"): 1325 1325 mfile.write("|| ") 1326 1326 … … 1404 1404 if self.generator == "MINGW": 1405 1405 mfile.write("\t@$(MAKE) -C %s%s\n" % (d, tname)) 1406 elif self.generator == "UNIX":1406 elif self.generator in ("UNIX", "GNUMAKE"): 1407 1407 mfile.write("\t@(cd %s; $(MAKE)%s)\n" % (d, tname)) 1408 1408 else: -
TabularUnified sip/trunk/specs/os2-g++ ¶
r1571 r1576 5 5 # 6 6 7 MAKEFILE_GENERATOR = UNIX7 MAKEFILE_GENERATOR = GNUMAKE 8 8 TEMPLATE = app 9 9 CONFIG += qt warn_on release link_prl copy_dir_files
Note:
See TracChangeset
for help on using the changeset viewer.