15 lines
		
	
	
		
			446 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			446 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 -D . e2sm-kpm-rc.asn
 | 
						|
 |