mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-05 20:42:26 +00:00
22 lines
No EOL
307 B
Makefile
22 lines
No EOL
307 B
Makefile
|
|
VOC = voc
|
|
|
|
all:
|
|
cd builds && \
|
|
$(VOC) -s \
|
|
../time.Mod \
|
|
../logger.Mod \
|
|
../diaspora2hugo/src/lists/Sys.Mod \
|
|
../diaspora2hugo/src/lists/List.Mod \
|
|
../CharacterStack.Mod \
|
|
../JsonParser.Mod \
|
|
../opium.Mod -m
|
|
|
|
clean:
|
|
cd builds && rm * &
|
|
|
|
run:
|
|
./builds/opium install
|
|
|
|
test: clean all run
|
|
|