15 lines
		
	
	
		
			476 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			476 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| include ./Makefile.am.libasncodec
 | |
| 
 | |
| bin_PROGRAMS += asn1convert
 | |
| asn1convert_CFLAGS = $(ASN_MODULE_CFLAGS) -DASN_PDU_COLLECTION 
 | |
| asn1convert_CPPFLAGS = -I$(top_srcdir)/./
 | |
| asn1convert_LDADD = libasncodec.la
 | |
| asn1convert_SOURCES = \
 | |
| 	./converter-example.c\
 | |
| 	./pdu_collection.c
 | |
| regen: regenerate-from-asn1-source
 | |
| 
 | |
| regenerate-from-asn1-source:
 | |
| 	asn1c -fcompound-names -fincludes-quoted -fno-include-deps -findirect-choice -gen-PER -no-gen-OER -D. ../asnTextFiles/e2ap-v01.00.00.asn
 | |
| 
 |