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.
 
 
 
 
 
 

37 lines
1.0 KiB

  1. INCLUDES = -I$(top_srcdir)/src $(all_includes) -I$(top_srcdir)/src/target -I$(top_srcdir)/src/server
  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. if IOUTIL
  13. libhelper_a_SOURCES += ioutil.c
  14. endif
  15. noinst_HEADERS = binarybuffer.h configuration.h types.h log.h command.h \
  16. time_support.h replacements.h fileio.h jim.h jim-eventloop.h \
  17. startup.tcl bin2char.c
  18. bin2char$(EXEEXT_FOR_BUILD): bin2char.c
  19. ${CC_FOR_BUILD} ${CFLAGS_FOR_BUILD} $(srcdir)/bin2char.c -o $@
  20. # Convert .tcl to cfile
  21. startup_tcl.c: startup.tcl bin2char$(EXEEXT_FOR_BUILD)
  22. ./bin2char$(EXEEXT_FOR_BUILD) startup_tcl < $(srcdir)/startup.tcl > $@
  23. # add startup_tcl.c to make clean list
  24. CLEANFILES = startup_tcl.c bin2char$(EXEEXT_FOR_BUILD)
  25. MAINTAINERCLEANFILES = Makefile.in