aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/size/Makefile
blob: e4353d74ea6e2ab14d6a15f45c9e8b3901c00959 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC = $(CROSS_COMPILE)gcc

all: get_size

get_size: get_size.c
	$(CC) -static -ffreestanding -nostartfiles -s $< -o $@

TEST_PROGS := get_size

include ../lib.mk

clean:
	$(RM) get_size