Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « accounting « tools - github.com/torvalds/linux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03687f19cbb17477c55f1a1360aa69d5842df67c (plain)
1
2
3
4
5
6
7
8
9
10
# SPDX-License-Identifier: GPL-2.0
CC := $(CROSS_COMPILE)gcc
CFLAGS := -I../../usr/include

PROGS := getdelays

all: $(PROGS)

clean:
	rm -fr $(PROGS)