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.
 
 
 
 
 
 

28 lines
952 B

  1. INCLUDES = -I$(top_srcdir)/src $(all_includes) -I$(top_srcdir)/src/target
  2. METASOURCES = AUTO
  3. AM_CPPFLAGS = -DPKGDATADIR=\"$(pkgdatadir)\" -DPKGLIBDIR=\"$(pkglibdir)\" @CPPFLAGS@
  4. noinst_LIBRARIES = libhelper.a
  5. if ECOSBOARD
  6. CONFIGFILES =
  7. else
  8. CONFIGFILES = options.c jim.c jim-eventloop.c
  9. endif
  10. libhelper_a_SOURCES = binarybuffer.c $(CONFIGFILES) configuration.c log.c command.c time_support.c \
  11. replacements.c fileio.c startup_tcl.c
  12. noinst_HEADERS = binarybuffer.h configuration.h types.h log.h command.h \
  13. time_support.h replacements.h fileio.h jim.h jim-eventloop.h \
  14. startup.tcl bin2char.c
  15. bin2char$(EXEEXT_FOR_BUILD): bin2char.c
  16. ${CC_FOR_BUILD} ${CFLAGS_FOR_BUILD} $(srcdir)/bin2char.c -o $@
  17. # Convert .tcl to cfile
  18. startup_tcl.c: startup.tcl bin2char$(EXEEXT_FOR_BUILD)
  19. ./bin2char$(EXEEXT_FOR_BUILD) startup_tcl < $(srcdir)/startup.tcl > $@
  20. # add startup_tcl.c to make clean list
  21. CLEANFILES = startup_tcl.c bin2char$(EXEEXT_FOR_BUILD)