Files
debugcc/Makefile
Bjorn Andersson 5aee065b2b DebugCC boiler plate code
The common boiler plate code provides the means for measuring clocks
using the debugcc feature on various Qualcomm platforms.

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

17 lines
223 B
Makefile

OUT := debugcc
CC=aarch64-linux-gnu-gcc
CFLAGS := -O2 -Wall -g
LDFLAGS :=
prefix := /usr/local
SRCS := debugcc.c
OBJS := $(SRCS:.c=.o)
$(OUT): $(OBJS)
$(CC) -o $@ $^ $(LDFLAGS)
clean:
rm -f $(OUT) $(OBJS) *-debugcc