repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
18 lines
251 B
Makefile
18 lines
251 B
Makefile
CC = $(CROSS_COMPILE)gcc
|
|
CFLAGS = -g -Wall
|
|
SRCS=$(wildcard *.c)
|
|
OBJS=$(SRCS:.c=.o)
|
|
|
|
all: resctrl_tests
|
|
|
|
$(OBJS): $(SRCS)
|
|
$(CC) $(CFLAGS) -c $(SRCS)
|
|
|
|
resctrl_tests: $(OBJS)
|
|
$(CC) $(CFLAGS) -o $@ $^
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
$(RM) $(OBJS) resctrl_tests
|