Improve Makefile and build system in general #1

Open
xin wants to merge 0 commits from make-improvement into master
Owner

Basically, we copy what Automake and CMake does. We separate into build and install phases. After install, static library and a file containing necessary CFLAGS LDFLAGS will be generated in the install directory.

A example of Makefile to compile dummy image after this change.

ARCH ?= # Note that ARCH must be provided
AM_ROOT ?= $(AM_HOME)/build/install/$(ARCH)

include $(AM_ROOT)/lib/make/rules.mk
include $(AM_ROOT)/lib/make/flags-$(ARCH).mk

DUMMY_SRCS := dummy.c
DUMMY_CFLAGS := $(AM_CFLAGS)
DUMMY_LDFLAGS := $(AM_LDFLAGS)

BUILDDIR := /home/xin/repo/openperf/src/test/build
$(eval $(call ADD_IMAGE,$(BUILDDIR)/add,DUMMY_))
Basically, we copy what Automake and CMake does. We separate into build and install phases. After install, static library and a file containing necessary `CFLAGS` `LDFLAGS` will be generated in the install directory. A example of Makefile to compile dummy image after this change. ```Makefile ARCH ?= # Note that ARCH must be provided AM_ROOT ?= $(AM_HOME)/build/install/$(ARCH) include $(AM_ROOT)/lib/make/rules.mk include $(AM_ROOT)/lib/make/flags-$(ARCH).mk DUMMY_SRCS := dummy.c DUMMY_CFLAGS := $(AM_CFLAGS) DUMMY_LDFLAGS := $(AM_LDFLAGS) BUILDDIR := /home/xin/repo/openperf/src/test/build $(eval $(call ADD_IMAGE,$(BUILDDIR)/add,DUMMY_)) ```
xin added 13 commits 2024-12-11 10:49:48 +00:00
xin added 1 commit 2024-12-11 12:50:59 +00:00
This branch is already included in the target branch. There is nothing to merge.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin make-improvement:make-improvement
git checkout make-improvement

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git checkout master
git merge --no-ff make-improvement
git checkout make-improvement
git rebase master
git checkout master
git merge --ff-only make-improvement
git checkout make-improvement
git rebase master
git checkout master
git merge --no-ff make-improvement
git checkout master
git merge --squash make-improvement
git checkout master
git merge --ff-only make-improvement
git checkout master
git merge make-improvement
git push origin master
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: openperf/abstract-machine#1
No description provided.