155fe001c6
Move timers examples to samples and remove it from Documentation Makefile. Create a new Makefile to build timers. It can be built from top level directory or from timers directory: Run make -C samples/timers or cd samples/timers; make Acked-by: Jonathan Corbet <corbet@lwn.net> Acked-by: Clemens Ladisch <clemens@ladisch.de> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
16 lines
266 B
Makefile
16 lines
266 B
Makefile
ifndef CROSS_COMPILE
|
|
uname_M := $(shell uname -m 2>/dev/null || echo not)
|
|
ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
|
|
|
|
ifeq ($(ARCH),x86)
|
|
CC := $(CROSS_COMPILE)gcc
|
|
PROGS := hpet_example
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm -fr $(PROGS)
|
|
|
|
endif
|
|
endif
|