-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·48 lines (39 loc) · 1.28 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
NO_COLOR = \033[0m
O1_COLOR = \033[0;01m
O2_COLOR = \033[32;01m
PREFIX = "$(O2_COLOR)==>$(O1_COLOR)"
SUFFIX = "$(NO_COLOR)"
CURRENT_DIR = $(shell pwd)
BASENAME = $(shell basename $(CURRENT_DIR))
SYSTEM_DIR = $(CURRENT_DIR)/../System
UCC = "$(SYSTEM_DIR)/ucc.exe"
VERSION = $(shell sed 's/^#define __VERSION__ \(.*\)$$/\1/p;d' $(BASENAME).inc)
GIT_EXISTS = $(shell [ -d .git ] && echo 1 || echo 0)
ifeq ($(GIT_EXISTS), 1)
BUILD_INFO = $(shell git rev-parse --short HEAD)$(shell [ -z "$(shell git diff --shortstat 2>/dev/null | tail -n1)" ] || echo '-dirty')
VERSION_STRING = $(VERSION)-$(BUILD_INFO)
else
VERSION_STRING = $(VERSION)
endif
BUILD_DATE = $(shell date +"%a %d %b %Y %H:%M:%S %Z")
default: compile
.PHONY: compile clean
compile:
@echo -e $(PREFIX) $@ $(SUFFIX)
@$(CURRENT_DIR)/build.sh
norestore:
@echo -e $(PREFIX) $@ $(SUFFIX)
@$(CURRENT_DIR)/build.sh -n
release:
@echo -e $(PREFIX) $@ $(SUFFIX)
@$(CURRENT_DIR)/build.sh -r
clean:
@echo -e $(PREFIX) $@ $(SUFFIX)
@-rm -vrf $(SYSTEM_DIR)/$(BASENAME).u $(SYSTEM_DIR)/$(BASENAME).u.bak $(CURRENT_DIR)/Classes.sha1sum
@if [[ -d $(CURRENT_DIR)/.Classes ]]; then \
rm -rf $(CURRENT_DIR)/Classes &&\
mv -vf $(CURRENT_DIR)/.Classes $(CURRENT_DIR)/Classes;\
fi
server:
@echo -e $(PREFIX) $@ $(SUFFIX)
@$(CURRENT_DIR)/server.sh