Logo
Explore Help
Sign In
linuxmsm/mybw
0
0
Fork 0
You've already forked mybw
mirror of https://github.com/linux-msm/mybw.git synced 2026-02-25 13:13:37 -08:00
Code Issues Packages Projects Releases Wiki Activity
Files
main
mybw/Makefile

14 lines
192 B
Makefile
Raw Permalink Normal View History

mybw: Quick hack to measure memory read performance Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
2022-03-29 18:39:51 -05:00
OUT := mybw
makefile: Allow CFLAGS/LDFLAGS from environment. This helps in cross-compilation where the flags passed from environment will matter much e.g. ABI, architecture etc. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-10-22 16:13:47 -07:00
CFLAGS += -O2 -Wall -fno-builtin
LDFLAGS += -static -static-libgcc
mybw: Quick hack to measure memory read performance Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
2022-03-29 18:39:51 -05:00
SRCS := mybw.c
OBJS := $(SRCS:.c=.o)
$(OUT): $(OBJS)
$(CC) -o $@ $^ $(LDFLAGS)
clean:
rm -f $(OUT) $(OBJS)
Reference in New Issue Copy Permalink
Powered by Gitea Page: 102ms Template: 4ms
English
English
Licenses API