summaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
AgeCommit message (Collapse)AuthorFilesLines
2020-01-25build system: configure: added --srcinfo,--srcsite,--pgprkey,--pgpskey support.midipix1-0/+6
2020-01-20build system: ./configure, Makefile.in: added source info logic.midipix1-0/+10
2020-01-10build system: add --pkgbugs (where to file) and --pkghome (project home page).midipix1-0/+2
2020-01-09build system: added file annotations.midipix1-0/+3
2020-01-06build system: ccenv_common_init(): fully expand all cflags.midipix1-0/+6
2020-01-06build system: remove the .conf and .display makefile targets (no longer used).midipix1-9/+0
2020-01-04build system: config.log: initial implementation.midipix1-0/+1
2020-01-03build system: distclean: remove build-specific directories.midipix1-0/+1
2020-01-02build system: remove the .display convenience makefile targets.midipix1-154/+0
2020-01-02build system: distclean: remove ccenv/host.mk, ccenv/native.mk.midipix1-0/+2
2019-01-10build system: empty archives: remove dependency on dirs.tag, mkdir -p lib.midipix1-1/+2
2019-01-09build system: empty archive generation: added missing dependency on dirs.tag.midipix1-1/+1
2019-01-09build system: Makefile.in: disabled implicit suffix-based rules.midipix1-0/+2
2019-01-02build system: moved handling of pe-specific variables to ccenv.midipix1-8/+4
2019-01-02build system: remove elf-specific make variables, as they're no longer needed.midipix1-12/+2
2018-12-31build system: sofort: refactored, rearranged using distinct sub-folders.midipix1-5/+5
2018-12-30build system: major overhaul: removed sysinfo, integrated ccenv.midipix1-41/+37
2018-12-30build system: Makefile.in: re-order variable sections.midipix1-28/+28
2018-12-25build system: Makefile.in: flavor.mk depends on version.mk's definitions.midipix1-2/+2
2018-12-25build system: Makefile.in: clean: remove all generated files.midipix1-0/+2
2018-12-25build system: Makefile.in: always include cfgdefs.mk & usrdefs.mk.midipix1-5/+0
The purpose of this commit is twofold; from the user's perspective, this provides a consistent experience whenever building a sofort-based project; and from the developer's perspective, this provides an easy way to test cfgdefs.mk even before the writing and/or integration of cfgdefs.sh.
2018-12-25build system: sofort: promoted and renamed custom.mk --> flavor.mk.midipix1-1/+1
2018-12-25build system: create the ``build'' directory via the dirs.tag make target.midipix1-1/+2
2018-12-24build system: target & native cchost logic: initial clean-up.midipix1-9/+4
2018-12-21build system: Makefile.in: distclean: remove cfgdefs.mk and usrdefs.mk.midipix1-0/+2
2018-12-16build system: Makefile.in: include custom config defs before project files.midipix1-9/+8
2018-12-13built system: added the NATIVE_CC_{CFGHOST|CFLAGS|LDFLAGS} variables.midipix1-0/+6
2018-12-10build system: support custom configuration via cfgdefs.sh (and usrdefs.mk).midipix1-0/+13
2018-12-10build system: added NATIVE_CC_HOST support.midipix1-1/+8
2018-11-25build system: --all-shared: ensure linking against the newly built library.midipix1-1/+1
This patch guards against the case where -lfoo would result in the linking in of either an external import library libfoo.lib.a, or a static libfoo.a, be it internal or external to the build system.
2018-11-25build system: only apply LDFLAGS_IMPLIB to the package's primary shared lib.midipix1-0/+1
2018-11-25build system: --all-shared: properly express primary shared library dependency.midipix1-1/+1
2018-11-23build system: all-shared: use LDFLAGS_APP as before, now with correct ordering.midipix1-1/+1
2018-11-22build system: added --cfghost support.midipix1-0/+2
2018-11-10build system: host flavors: support suffixed library extensions.midipix1-1/+1
'cause you cannot eat your Apfel and eat it two.
2018-08-05build system: all-shared binary: added missing build-dep on $(SHARED_SOLINK).midipix1-1/+1
2018-08-05build system: all-shared front-end variant: fix ordering of -l$(PACKAGE).midipix1-1/+1
2018-08-05build system: install-shared, install-static: added initial pkgconfig support.midipix1-0/+1
2018-08-05build system: configure, Makefile.in: added initial pkgconfig support.midipix1-3/+23
2017-11-23build system: added --cchost support.midipix1-2/+7
2017-05-28build system: added extended dir variables.midipix1-0/+29
2017-05-24build system: added --sbindir support.midipix1-0/+2
2016-11-11build system: Makefile.in: properly support explicit CFLAGS_PIC in OS recipe.midipix1-0/+1
2016-10-26build system: .conf convenience target: display source dir information.midipix1-0/+1
2016-09-21build system: support setting an external folder as the source directory.midipix1-3/+4
2016-05-28build system: support project-specific overrides of OS and toolchain defs.midipix1-0/+2
2016-05-19build system: added support for [C|LD]FLAGS_LAST and [C|LD]FLAGS_ONCE.midipix1-0/+8
2016-05-19build system: when building from a git repo, explicitly depend on .git/index.midipix1-2/+2
2016-05-15build system: remove generic dependency on version.tag.midipix1-2/+2
Since git-status touches several files (including .git/index), a generic object file dependency on version.tag means that all objects get recompiled whenever git-status is invoked. This patch works around this problem at the cost of ad-hoc dependency rules for specific objects.
2016-05-14build system: upgrade build system, eliminate differences in core definitions.midipix1-39/+158
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.