mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-05 20:42:26 +00:00
32 lines
No EOL
566 B
Makefile
32 lines
No EOL
566 B
Makefile
|
|
VOC = voc
|
|
VERSION_FILE = ./VersionFile.json
|
|
|
|
test: clean copy-version-file-to-build-dir all run
|
|
|
|
copy-version-file-to-build-dir:
|
|
cp ./$(VERSION_FILE) ./builds/$(VERSION_FILE)
|
|
|
|
all:
|
|
cd builds && \
|
|
$(VOC) -s \
|
|
../time.Mod \
|
|
../logger.Mod \
|
|
../diaspora2hugo/src/lists/Sys.Mod \
|
|
../diaspora2hugo/src/lists/List.Mod \
|
|
../CharacterStack.Mod \
|
|
../JsonParser.Mod \
|
|
../FileManager.Mod \
|
|
../PackageFileParser.Mod \
|
|
../opium.Mod -m
|
|
|
|
clean:
|
|
cd builds && rm * &
|
|
|
|
run:
|
|
./builds/opium install
|
|
|
|
file:
|
|
cd builds && \
|
|
$(VOC) -s \
|
|
../FileManager.Mod -m
|