Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
Pearl River
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Manufacturing
Pearl River
Commits
30dd0765
Commit
30dd0765
authored
6 years ago
by
chipforge
Browse files
Options
Downloads
Patches
Plain Diff
[BUILD] Update GNU Makefile system hierarchical for Document building
parent
2c9c3a68
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Documents/LaTeX/GNUmakefile
+94
-0
94 additions, 0 deletions
Documents/LaTeX/GNUmakefile
Documents/LaTeX/teststructures.tex
+62
-0
62 additions, 0 deletions
Documents/LaTeX/teststructures.tex
GNUmakefile
+6
-5
6 additions, 5 deletions
GNUmakefile
with
162 additions
and
5 deletions
Documents/LaTeX/GNUmakefile
0 → 100644
+
94
−
0
View file @
30dd0765
# ************ 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/Documents/LaTeX/GNUmakefile
#
# Purpose: Makefile for Document Generation in LaTeX
#
# ************ 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
=
.
OUTPUTDIR
=
..
# tool variables
CAT
?=
@cat
ECHO
?=
@echo
# -e
MV
?=
mv
TAR
?=
rm
-f
TAR
?=
tar
-zh
DATE
:=
$(
shell
date
+%Y%m%d
)
# project tools
LATEX
?=
pdflatex
-output-directory
$(
OUTPUTDIR
)
RUBBER
?=
rubber
# ----------------------------------------------------------------
# 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
)
" clean - clean up all intermediate files"
$(
ECHO
)
""
$(
ECHO
)
" doc - compile documentation"
$(
ECHO
)
""
.PHONY
:
clean
clean
:
$(
RM
)
*
.aux
*
.idx
*
.log
*
.toc
*
.out
# ----------------------------------------------------------------
# DOCUMENTATION TARGETS
# ----------------------------------------------------------------
.PHONY
:
doc
doc
:
pdf clean
.PHONY
:
pdf
pdf
:
$(PROJECT).tex revision.tex
$(
LATEX
)
$<
%.pdf
:
%.tex
$(
RUBBER
)
-m
pdftex
$<
This diff is collapsed.
Click to expand it.
Documents/LaTeX/teststructures.tex
0 → 100644
+
62
−
0
View file @
30dd0765
%% ************ 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/Documents/LaTeX/teststructures.tex
%%
%% Purpose: Chapter File for Test Structures
%%
%% ************ LaTeX with circdia.sty package ***************
%%
%% ///////////////////////////////////////////////////////////////////
%%
%% 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.
%%
%% ///////////////////////////////////////////////////////////////////
\section
{
Test Structures
}
\subsection
{
Metall and Poly Resistance
}
% wells
% stripes
% pad
\subsection
{
Contact and Via Resistance
}
\subsection
{
Layer Capacitance
}
\subsection
{
Diodes
}
% parasitic diodes, Zener diodes
\subsection
{
p-channel and n-channels Transistors
}
% p-/n- Tables
\subsection
{
Bipolar Junctions Transistors
}
\subsection
{
Experimental
}
% High-Voltage Fets
% SONOS
\clearpage
This diff is collapsed.
Click to expand it.
GNUmakefile
+
6
−
5
View file @
30dd0765
...
@@ -54,7 +54,7 @@ DATE := $(shell date +%Y%m%d)
...
@@ -54,7 +54,7 @@ DATE := $(shell date +%Y%m%d)
# project tools
# project tools
LATEX
?=
pdflatex
-output-directory
$(
DOCUMENTSDIR
)
$(
OUTPUTDIR
)
# ??
# default
# default
...
@@ -96,13 +96,14 @@ dist: clean
...
@@ -96,13 +96,14 @@ dist: clean
.PHONY
:
clean
.PHONY
:
clean
clean
:
clean
:
$(
ECHO
)
"---- clean up all intermediate files ----"
$(
ECHO
)
"---- clean up all intermediate files ----"
$(
MAKE
)
-C
$(
DOCUMENTSDIR
)
/LaTeX
-f
build.mk
$@
$(
MAKE
)
-C
$(
DOCUMENTSDIR
)
/LaTeX
-f
GNUmakefile
$@
# ----------------------------------------------------------------
# ----------------------------------------------------------------
# DOCUMENTATION TARGETS
# DOCUMENTATION TARGETS
# ----------------------------------------------------------------
# ----------------------------------------------------------------
.PHONY
:
doc
.PHONY
:
doc
doc
:
$(DOCUMENTSDIR)/LaTeX/$(PROJECT).tex $(DOCUMENTSDIR)/LaTeX/revision.tex
doc
:
TEXINPUTS
=
$$
TEXINPUT:./
$(
DOCUMENTSDIR
)
/LaTeX
$(
LATEX
)
$(
<F
)
$(
MAKE
)
-C
$(
DOCUMENTSDIR
)
/LaTeX
-f
GNUmakefile
$@
# TEXINPUTS=::../../circdia xelatex PearlRiver.tex
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment