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