renaming pEpEngine/sync to pEpEngine/codegen, because we're generating way more than sync here

pull/22/head
Volker Birk 2021-04-04 15:47:12 +02:00
parent 050bd91b6f
commit 0e86d5161f
19 changed files with 13 additions and 5 deletions

8
.gitignore vendored
View File

@ -124,3 +124,11 @@ test/test_keys/736_a.asc
test/test_keys/736_b.asc
test/test_mails/ENGINE-654_bob_mail.eml
# ignore generated data
codegen/.actions
codegen/.codecs
codegen/.copy
codegen/.messages
codegen/.statemachines
codegen/generated/

View File

@ -25,7 +25,7 @@ ifdef PEP_MIME
BUILT_IN_MIME=pepmime
endif
.PHONY: all $(BUILT_IN_MIME) sync asn1 build install dbinstall uninstall clean tags test package db
.PHONY: all $(BUILT_IN_MIME) codegen asn1 build install dbinstall uninstall clean tags test package db
build: $(BUILT_IN_MIME) asn1
$(MAKE) -C src
@ -37,10 +37,10 @@ all: build
pepmime:
$(MAKE) -C pEpMIME lib
sync:
$(MAKE) -C sync
codegen:
$(MAKE) -C codegen
asn1: sync
asn1: codegen
$(MAKE) -C asn.1
@ -66,7 +66,7 @@ clean:
$(MAKE) -C test clean
$(MAKE) -C db clean
$(MAKE) -C asn.1 clean
$(MAKE) -C sync clean
$(MAKE) -C codegen clean
$(MAKE) -C build-android clean
ifdef PEP_MIME
$(MAKE) -C pEpMIME clean