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)
26 lines
171 B
Makefile
26 lines
171 B
Makefile
|
|
|
|
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:
|
|
|