move directory location for asn source/header files

This commit is contained in:
Sukchan Lee 2017-02-03 17:11:24 +09:00
parent 9640a8a0fe
commit afc96a3b16
11 changed files with 5 additions and 32 deletions

View File

@ -256,6 +256,7 @@ AC_CONFIG_FILES([lib/core/test/Makefile])
AC_CONFIG_FILES([lib/core/Makefile])
AC_CONFIG_FILES([lib/logger/Makefile])
AC_CONFIG_FILES([lib/asn/asn1c/Makefile])
AC_CONFIG_FILES([lib/asn/src/Makefile])
AC_CONFIG_FILES([lib/asn/test/Makefile])
AC_CONFIG_FILES([lib/asn/Makefile])
AC_CONFIG_FILES([src/Makefile])

View File

@ -1,33 +1,6 @@
## Process this file with automake to produce Makefile.in
SUBDIRS = asn1c test
noinst_LTLIBRARIES = libasn.la
libasn_la_SOURCES = \
s1ap_ies_defs.h s1ap_common.h
nodist_libasn_la_SOURCES = \
s1ap_encoder.c s1ap_decoder.c s1ap_xer_print.c \
s1ap_common.c
libasn_la_DEPENDENCIES = \
$(top_srcdir)/lib/core/src/libcore.la \
$(top_srcdir)/lib/core/src/@OSDIR@/libcore@OSDIR@.la
libasn_la_LIBADD = \
$(top_srcdir)/lib/core/src/libcore.la \
$(top_srcdir)/lib/core/src/@OSDIR@/libcore@OSDIR@.la
AM_CPPFLAGS = \
-I$(top_srcdir)/lib/core/include/arch/@OSDIR@ \
-I$(top_srcdir)/lib/core/include \
-I$(top_srcdir)/lib/asn/asn1c
AM_CFLAGS = \
-Wall -Werror -Wno-incompatible-pointer-types
SUBDIRS = asn1c src test
MAINTAINERCLEANFILES = Makefile.in
MOSTLYCLEANFILES = *.stackdump
EXTRA_DIST = .libs $(noinst_LTLIBRARIES)

View File

@ -8,7 +8,7 @@ user@host ~/Documents/git/cellwire/lib/asn/support$ \
* EUROCOM S1AP-IEs support files
user@host ~/Documents/git/cellwire/lib/asn/support$ \
python asn1tostruct.py -f S1AP-PDU.asn -o ..
python asn1tostruct.py -f S1AP-PDU.asn -o ../src
* Use AuthenticEshkinKot's fork for asn1c
user@host ~/Documents/git/AuthenticEshkinKot$ \

View File

@ -10,14 +10,13 @@ testasn_SOURCES = \
testasn_LDADD = \
$(top_srcdir)/lib/core/src/libcore.la \
$(top_srcdir)/lib/asn/asn1c/libasn1c.la \
$(top_srcdir)/lib/asn/libasn.la \
$(top_srcdir)/lib/asn/src/libasn.la \
-lpthread -lsctp
AM_CPPFLAGS = \
-I$(top_srcdir)/lib/core/include/arch/@OSDIR@ \
-I$(top_srcdir)/lib/core/include \
-I$(top_srcdir)/lib/asn/asn1c \
-I$(top_srcdir)/lib/asn
-I$(top_srcdir)/lib/asn/src
AM_CFLAGS = \
-Wall -Werror @OSCFLAGS@ \