-
Notifications
You must be signed in to change notification settings - Fork 9
/
GNUmakefile
109 lines (87 loc) · 3.22 KB
/
GNUmakefile
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# ************ LibreSilicon's 1st TestWafer *******************
#
# Organisation: Chipforge
# Germany / European Union
#
# Profile: Chipforge focus on fine System-on-Chip Cores in
# Verilog HDL Code which are easy understandable and
# adjustable. For further information see
# www.chipforge.org
# there are projects from small cores up to PCBs, too.
#
# File: PearlRiver/GNUmakefile
#
# Purpose: Root Makefile
#
# ************ GNU Make 3.80 Source Code ****************
#
# ////////////////////////////////////////////////////////////////
#
# Copyright (c) 2018 by chipforge <hsank@nospam.chipforge.org>
# All rights reserved.
#
# This Standard Cell Library is licensed under the Libre Silicon
# public license; you can redistribute it and/or modify it under
# the terms of the Libre Silicon public license as published by
# the Libre Silicon alliance, either version 1 of the License, or
# (at your option) any later version.
#
# This design is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the Libre Silicon Public License for more details.
#
# ////////////////////////////////////////////////////////////////////
# project name
PROJECT = PearlRiver
# directory pathes
DOCUMENTSDIR = Documents
LIBRARYDIR = Library
LAYOUTDIR = Layout
TOOLSDIR = Tools
# tool variables
CAT ?= @cat
ECHO ?= @echo # -e
MV ?= mv
TAR ?= tar -zh
DATE := $(shell date +%Y%m%d)
# project tools
# ??
# default
DISTRIBUTION = ./GNUmakefile \
$(DOCUMENTSDIR) \
$(LIBRARYDIR) \
$(LAYOUTDIR) \
$(TOOLSDIR)
# ----------------------------------------------------------------
# DEFAULT TARGETS
# ----------------------------------------------------------------
# display help screen if no target is specified
.PHONY: help
help:
$(ECHO) "-------------------------------------------------------------------"
$(ECHO) " available targets:"
$(ECHO) "-------------------------------------------------------------------"
$(ECHO) ""
$(ECHO) " help - print this help screen"
$(ECHO) " dist - build a tarball with all important files"
$(ECHO) " clean - clean up all intermediate files"
$(ECHO) ""
$(ECHO) " doc - compile documentation"
$(ECHO) ""
# make archiv by building a tarball with all important files
.PHONY: dist
dist: clean
$(ECHO) "---- build a tarball with all important files ----"
$(TAR) -cvf $(PROJECT)_$(DATE).tgz $(DISTRIBUTION)
# well, 'clean' directories before distributing
.PHONY: clean
clean:
$(ECHO) "---- clean up all intermediate files ----"
$(MAKE) -C $(DOCUMENTSDIR)/LaTeX -f GNUmakefile $@
# ----------------------------------------------------------------
# DOCUMENTATION TARGETS
# ----------------------------------------------------------------
.PHONY: doc
doc:
$(MAKE) -C $(DOCUMENTSDIR)/LaTeX -f GNUmakefile $@