mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-05 20:42: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:
|
||||
cp ./$(VERSION_FILE) ./builds/$(VERSION_FILE)
|
||||
cp ./$(VERSION_FILE) ./$(BUILDDIR)/$(VERSION_FILE)
|
||||
|
||||
all: http
|
||||
cd builds && \
|
||||
cd $(BUILDDIR) && \
|
||||
$(VOC) -s \
|
||||
../vpkGit.Mod \
|
||||
../vpkFsHelper.Mod \
|
||||
|
|
@ -37,11 +37,11 @@ all: http
|
|||
|
||||
|
||||
run:
|
||||
./builds/Vipack install
|
||||
$(BUILDDIR)/Vipack install
|
||||
|
||||
|
||||
http: clean
|
||||
cd builds && \
|
||||
cd $(BUILDDIR) && \
|
||||
$(VOC) -s ../vpkTime.Mod \
|
||||
../vpkLogger.Mod \
|
||||
../vpkTypes.Mod \
|
||||
|
|
@ -51,7 +51,7 @@ http: clean
|
|||
../vpkHttp.Mod
|
||||
|
||||
json:
|
||||
cd builds && \
|
||||
cd $(BUILDDIR) && \
|
||||
$(VOC) -s \
|
||||
../vpkTime.Mod \
|
||||
../vpkLogger.Mod \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue