mirror of
https://github.com/linux-msm/debugcc.git
synced 2026-02-25 13:12:32 -08:00
Add QCS404 measure clocks from the downstream kernel. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
18 lines
261 B
Makefile
18 lines
261 B
Makefile
OUT := debugcc
|
|
|
|
CC=aarch64-linux-gnu-gcc
|
|
|
|
CFLAGS := -O2 -Wall -g
|
|
LDFLAGS :=
|
|
prefix := /usr/local
|
|
|
|
SRCS := debugcc.c qcs404.c
|
|
OBJS := $(SRCS:.c=.o)
|
|
|
|
$(OUT): $(OBJS)
|
|
$(CC) -o $@ $^ $(LDFLAGS)
|
|
ln -f $(OUT) qcs404-debugcc
|
|
|
|
clean:
|
|
rm -f $(OUT) $(OBJS) *-debugcc
|