Makefile 229 B

123456789
  1. # kbuild trick to avoid linker error. Can be omitted if a module is built.
  2. obj- := dummy.o
  3. # List of programs to build
  4. hostprogs-$(CONFIG_X86) := hpet_example
  5. # Tell kbuild to always build the programs
  6. always := $(hostprogs-y)