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 357 B

1234567891011121314151617181920212223
  1. EXTRA_DIST = bootsect.S
  2. lib_LTLIBRARIES = $(libkernel_la)
  3. if USE_KERNEL
  4. libkernel_la = libkernel.la
  5. endif
  6. libkernel_la_SOURCES = \
  7. kernel.c \
  8. kernel.h \
  9. multiboot.h \
  10. $(NULL)
  11. libkernel_la_LDFLAGS = -no-undefined
  12. AM_CPPFLAGS = -I$(top_srcdir)
  13. clean: clean-local
  14. clean-local:
  15. rm -f bootsect.bin kern.bin kernel.map
  16. echo-sources: ; echo $(SOURCES)