mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-06 13:02:26 +00:00
more BUILDDIR usage
This commit is contained in:
parent
cc2766dc18
commit
6ceb5be7b6
1 changed files with 5 additions and 5 deletions
10
makefile
10
makefile
|
|
@ -12,10 +12,10 @@ create_builds_dir:
|
||||||
|
|
||||||
|
|
||||||
copy-version-file-to-build-dir:
|
copy-version-file-to-build-dir:
|
||||||
cp ./$(VERSION_FILE) ./builds/$(VERSION_FILE)
|
cp ./$(VERSION_FILE) ./$(BUILDDIR)/$(VERSION_FILE)
|
||||||
|
|
||||||
all: http
|
all: http
|
||||||
cd builds && \
|
cd $(BUILDDIR) && \
|
||||||
$(VOC) -s \
|
$(VOC) -s \
|
||||||
../vpkGit.Mod \
|
../vpkGit.Mod \
|
||||||
../vpkFsHelper.Mod \
|
../vpkFsHelper.Mod \
|
||||||
|
|
@ -37,11 +37,11 @@ all: http
|
||||||
|
|
||||||
|
|
||||||
run:
|
run:
|
||||||
./builds/Vipack install
|
$(BUILDDIR)/Vipack install
|
||||||
|
|
||||||
|
|
||||||
http: clean
|
http: clean
|
||||||
cd builds && \
|
cd $(BUILDDIR) && \
|
||||||
$(VOC) -s ../vpkTime.Mod \
|
$(VOC) -s ../vpkTime.Mod \
|
||||||
../vpkLogger.Mod \
|
../vpkLogger.Mod \
|
||||||
../vpkTypes.Mod \
|
../vpkTypes.Mod \
|
||||||
|
|
@ -51,7 +51,7 @@ http: clean
|
||||||
../vpkHttp.Mod
|
../vpkHttp.Mod
|
||||||
|
|
||||||
json:
|
json:
|
||||||
cd builds && \
|
cd $(BUILDDIR) && \
|
||||||
$(VOC) -s \
|
$(VOC) -s \
|
||||||
../vpkTime.Mod \
|
../vpkTime.Mod \
|
||||||
../vpkLogger.Mod \
|
../vpkLogger.Mod \
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue