https://github.com/torvalds/linux
Raw File
Tip revision: 4a6908a3a050aacc9c3a2f36b276b46c0629ad91 authored by Linus Torvalds on 24 December 2008, 23:26:37 UTC
Linux 2.6.28
Tip revision: 4a6908a
Makefile
# kbuild trick to avoid linker error. Can be omitted if a module is built.
obj- := dummy.o

# List of programs to build
hostprogs-y := watchdog-simple watchdog-test

# Tell kbuild to always build the programs
always := $(hostprogs-y)
back to top