mirror of
https://github.com/arjuncr/Linux-from-scratch.git
synced 2026-01-18 12:41:23 +00:00
9 lines
172 B
Makefile
9 lines
172 B
Makefile
# Makefile for lib/ function selftests
|
|
|
|
# No binaries, but make sure arg-less "make" doesn't trigger "run_tests"
|
|
all:
|
|
|
|
TEST_PROGS := printf.sh bitmap.sh
|
|
|
|
include ../lib.mk
|