Commit 93c90bf8 authored by Denis Filatov's avatar Denis Filatov
Browse files

Delete .gitlab-ci.mk: Not needed anymore

parent f812af43
Loading
Loading
Loading
Loading

.gitlab-ci.mk

deleted100755 → 0
+0 −24
Original line number Diff line number Diff line
ASN1_SRC   :=  ITS-Container.asn

ASN1_PDU := ItsPduHeader
ASN1_KNOWN := DATE

#ASN1CDIR    ?= $(USERPROFILE)/Work/asn1c-fillabs
ifneq (,$(ASN1CDIR))
  ASN1C := $(ASN1CDIR)/asn1c/.libs/asn1c -S $(ASN1CDIR)/skeletons
else
  ASN1C := asn1c
endif

.PHONY: validate doc build

validate: iso build

doc: docs
	python3 asn2md.py -o docs --no-empty-fields $(ASN1_SRC)
		
iso docs:
	mkdir -p $@

build: $(ASN1_SRC) $(ASN1_SRC_VALIDATE)
	$(ASN1C) -E -F -fcompound-names $(addprefix -fknown-extern-type=,$(ASN1_KNOWN)) $(addprefix -pdu=,$(ASN1_PDU)) $^ >/dev/null