https://github.com/torvalds/linux
Raw File
Tip revision: 7a3fad30fd8b4b5e370906b3c554f64026f56c2f authored by Linus Torvalds on 24 July 2024, 17:29:50 UTC
Merge tag 'random-6.11-rc1-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/crng/random
Tip revision: 7a3fad3
Makefile
# SPDX-License-Identifier: GPL-2.0
CC := $(CROSS_COMPILE)gcc
CFLAGS := -I../../usr/include

PROGS := getdelays procacct

all: $(PROGS)

clean:
	rm -fr $(PROGS)
back to top