summaryrefslogtreecommitdiffhomepage
path: root/sysinfo/os/pe.mk
AgeCommit message (Collapse)AuthorFilesLines
2018-12-30build system: major overhaul: removed sysinfo, integrated ccenv.midipix1-99/+0
2018-11-25build system: only apply LDFLAGS_IMPLIB to the package's primary shared lib.midipix1-1/+0
2018-11-25build system: PE, ELF: defined DSO_REF_VER, DSO_REF_SONAME, DSO_REF_SOLINK.midipix1-0/+4
These definitions come in handy when a project generates alongside its ``primary shared library'' one or more ``extension libraries'' that depend on it. When the rules for generating extension libraries use the $^ directive, the above dependency must be declared in a target-aware manner. In most cases, one would want to express this dependency by way of $(DSO_REF_SONAME), thereby pulling in lib/libfoo.so.$(MAJOR) on ELF targets, lib/libfoo.$(MAJOR).lib.a on midipix targets, and lib/libfoo.$(MAJOR).dll.a on win32 targets.
2018-06-05build system: PE targets: mdso integration: support non-default --libpath.midipix1-1/+2
2017-10-25build system: PE targets: added mdso-based import library generation support.midipix1-3/+24
2016-12-13PE soname support: added the designated LDFLAGS_SONAME variable.midipix1-2/+3
2016-11-30build system: sofort/os/pe.mk: install-implib-solink: fix target definition.midipix1-3/+3
2016-05-14build system: PE targets: handle subsystem setting in pe.mk.midipix1-0/+3
2016-05-14build system: upgrade build system, eliminate differences in core definitions.midipix1-0/+70
Prior to this patch, there were several differences between this project's build system and the one from which it was derived (sofort). Although the differences were very minor and for the most part related to this project being part of a free-standing, midipix-specific development framework, they still added an extra maintenance burden, specifically by requiring that common changes be applied via patch(1) rather than git-am(1). Following recent improvements to the common build system, it is now possible to have a free-standing, midipix-specific project without any changes to the core build system files, hence the current upgrade.