diff options
author | midipix <writeonce@midipix.org> | 2016-05-10 23:45:13 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-05-10 23:45:13 -0400 |
commit | 9c558eed45d42d3660abed5f416328269294d078 (patch) | |
tree | d7171fb255e136165165b1b84450064e041f37c4 /sysinfo/os/mingw.mk | |
parent | 39423d0fa25237c2533f7f604edc209831382090 (diff) | |
download | pemagine-9c558eed45d42d3660abed5f416328269294d078.tar.bz2 pemagine-9c558eed45d42d3660abed5f416328269294d078.tar.xz |
build system: upgrade build system, eliminate differences in core definitions.
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.
Diffstat (limited to 'sysinfo/os/mingw.mk')
-rw-r--r-- | sysinfo/os/mingw.mk | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/sysinfo/os/mingw.mk b/sysinfo/os/mingw.mk index 085d1be..6ade8d5 100644 --- a/sysinfo/os/mingw.mk +++ b/sysinfo/os/mingw.mk @@ -1,14 +1,12 @@ -OS = mingw -OS_APP_PREFIX = -OS_APP_SUFFIX = .exe -OS_LIB_PREFIX = lib -OS_LIB_SUFFIX = .dll -OS_IMPLIB_EXT = .dll.a -OS_LIBDEF_EXT = .def -OS_ARCHIVE_EXT = .a +OS = mingw +OS_APP_PREFIX = +OS_APP_SUFFIX = .exe +OS_LIB_PREFIX = lib +OS_LIB_SUFFIX = .dll +OS_IMPLIB_EXT = .dll.a +OS_LIBDEF_EXT = .def +OS_ARCHIVE_EXT = .a +OS_SONAME = copy +OS_BINFMT = PE -CFLAGS_PIC = - -install-implib: shared-implib - mkdir -p $(DESTDIR)$(LIBDIR) - cp $(SHARED_IMPLIB) $(DESTDIR)$(LIBDIR) +CFLAGS_PIC = |