yavsc/Makefile

26 lines
465 B
Makefile
Raw Normal View History

2018-02-03 20:17:29 +01:00
2018-02-03 20:17:29 +01:00
MAKE=make
2018-04-26 05:20:08 +02:00
SUBDIRS=Yavsc.Abstract Yavsc cli
git_status := $(shell git status -s --porcelain |wc -l)
rc_num := $(shell cat rc-num.txt)
VERSION=1.0.5-rc$(rc_num)
2018-02-03 20:17:29 +01:00
all: $(SUBDIRS)
$(SUBDIRS):
2018-04-15 23:15:28 +02:00
$(MAKE) -C $@ VERSION=$(VERSION)
2018-02-03 20:17:29 +01:00
Yavsc.Abstract-deploy:
2018-04-26 21:02:11 +02:00
$(MAKE) -C Yavsc.Abstract deploy-pkg VERSION=$(VERSION)
Yavsc-deploy: Yavsc
2018-04-20 16:16:54 +02:00
$(MAKE) -C Yavsc deploy-pkg VERSION=$(VERSION)
2018-02-07 20:32:58 +01:00
Yavsc: Yavsc.Abstract-deploy
make -C Yavsc restore
cli: Yavsc
2018-02-03 20:17:29 +01:00
.PHONY: all $(SUBDIRS)