Files
debugcc/Makefile
Bjorn Andersson 66ddc6a775 Add QCS404 platform
Add QCS404 measure clocks from the downstream kernel.

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
2019-02-21 22:12:13 -08:00

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