start working on winixcli

winixcli can now read a PGModeler file
and is able to generate a template through ezc

winixcli parameters:
--input-mode pgmodeler (only one parameter at the moment)
--input-file file (pgmodeler file)
--templates-dir dir_path (a path to templates directory)
--template file (template file)
This commit is contained in:
2022-01-18 19:40:57 +01:00
parent 557555c4b3
commit ff8e9e6b32
8 changed files with 614 additions and 0 deletions

25
winixcli/Makefile Normal file
View File

@@ -0,0 +1,25 @@
export CXX
export CXXFLAGS
export LDFLAGS
all: src
src: FORCE
$(MAKE) -C src
clean: FORCE
$(MAKE) -C src clean
depend: FORCE
$(MAKE) -C src depend
FORCE: