16 lines
352 B
Makefile
16 lines
352 B
Makefile
|
|
# common flags used in openocd build
|
|
AM_CFLAGS = $(GCC_WARNINGS)
|
|
|
|
AM_CPPFLAGS = $(HOST_CPPFLAGS)\
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_builddir)/src \
|
|
-I$(top_srcdir)/src/helper \
|
|
-DPKGDATADIR=\"$(pkgdatadir)\" \
|
|
-DBINDIR=\"$(bindir)\"
|
|
|
|
if INTERNAL_JIMTCL
|
|
AM_CPPFLAGS += -I$(top_srcdir)/jimtcl \
|
|
-I$(top_builddir)/jimtcl
|
|
endif
|