You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile.am 407 B

123456789101112131415161718192021222324
  1. # $Id: Makefile.am 326 2006-03-06 20:57:14Z sam $
  2. EXTRA_DIST = bootsect.S
  3. lib_LTLIBRARIES = $(libkernel_la)
  4. if USE_KERNEL
  5. libkernel_la = libkernel.la
  6. endif
  7. libkernel_la_SOURCES = \
  8. kernel.c \
  9. kernel.h \
  10. multiboot.h \
  11. $(NULL)
  12. libkernel_la_LDFLAGS = -no-undefined
  13. AM_CPPFLAGS = -I$(top_srcdir)
  14. clean: clean-local
  15. clean-local:
  16. rm -f bootsect.bin kern.bin kernel.map
  17. echo-sources: ; echo $(SOURCES)