Move headers from include dir to src dir

This commit is contained in:
Matthew Brush 2013-03-04 02:22:28 -08:00
parent 5b15c782d0
commit aed8b7f4da
10 changed files with 6 additions and 7 deletions

View File

@ -2,9 +2,9 @@ noinst_PROGRAMS = hash_usage large_hash strings conf_example conf_example2 opt_e
LDADD = -L$(top_srcdir)/src -lcfu
if DEBUG
AM_CFLAGS = -I$(top_srcdir)/include -DCFU_DEBUG=1
AM_CFLAGS = -I$(top_srcdir)/src -DCFU_DEBUG=1
else
AM_CFLAGS = -I$(top_srcdir)/include
AM_CFLAGS = -I$(top_srcdir)/src
endif
AM_LDFLAGS = -Xlinker -rpath -Xlinker $(top_src_dir)/src

View File

@ -10,11 +10,10 @@ else
AM_CFLAGS = -Wall -W $(CFU_CONFIG_DEFINES)
endif
include_HEADERS = $(top_srcdir)/include/cfu.h $(top_srcdir)/include/cfuhash.h \
$(top_srcdir)/include/cfutime.h $(top_srcdir)/include/cfustring.h \
$(top_srcdir)/include/cfulist.h $(top_srcdir)/include/cfuconf.h \
$(top_srcdir)/include/cfuthread_queue.h $(top_srcdir)/include/cfutypes.h \
$(top_srcdir)/include/cfuopt.h
include_HEADERS = $(top_srcdir)/src/cfu.h $(top_srcdir)/src/cfuhash.h \
$(top_srcdir)/src/cfutime.h $(top_srcdir)/src/cfustring.h \
$(top_srcdir)/src/cfulist.h $(top_srcdir)/src/cfuconf.h \
$(top_srcdir)/src/cfuthread_queue.h $(top_srcdir)/src/cfuopt.h
# libcfu_a_LDFLAGS = -lpthread
INCLUDES = -I$(top_srcdir)/include