Skip to content

Commit

Permalink
Began versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
W. Trevor King committed Jan 9, 2010
0 parents commit e8f3411
Show file tree
Hide file tree
Showing 5 changed files with 2,112 additions and 0 deletions.
51 changes: 51 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
all : drexel-thesis.pdf drexel-thesis.cls main.pdf bibmain.pdf

drexel-thesis.pdf : drexel-thesis.dtx
pdflatex $<
makeindex drexel-thesis.glo -s gglo.ist -o drexel-thesis.gls
pdflatex $<

drexel-thesis.cls main.tex part1.tex bibmain.tex bibpart1 references.bib : \
drexel-thesis.ins drexel-thesis.dtx
pdflatex $<

main.pdf : main.tex part1.tex
pdflatex $<
pdflatex $<

bibmain.pdf : bibmain.tex bibpart1.tex references.bib
pdflatex $<
bibtex bibmain
pdflatex $<
pdflatex $<

temp-clean :
rm -f *.aux *.log *.out *.lof *.lot *.toc \
*.ilg *.glo *.gls *.idx *.ind \
*.bbl *.blg *.dvi drexel-thesis

semi-clean : temp-clean
rm -f *.bib *.tex

clean : semi-clean
rm -f *.cls drexel-thesis.pdf main.pdf bibmain.pdf \
drexel-thesis.tar.gz

dist : drexel-thesis.tar.gz

CLASS_FILES = Makefile README drexel-thesis.dtx drexel-thesis.ins \
drexel-thesis.cls drexel-thesis.pdf
MAIN_FILES = main.tex part1.tex appendixA.tex drexel-logo.pdf main.pdf
BIBMAIN_FILES = bibmain.tex bibpart1.tex references.bib appendixA.tex \
bibmain.pdf

drexel-thesis.tar.gz : $(CLASS_FILES) $(MAIN_FILES) $(BIBMAIN_FILES)
rm -f $@
mkdir drexel-thesis
cp -p $(CLASS_FILES) drexel-thesis/
mkdir drexel-thesis/main
cp -p $(MAIN_FILES) drexel-thesis/main/
mkdir drexel-thesis/bibmain
cp -p $(BIBMAIN_FILES) drexel-thesis/bibmain/
tar -chozf $@ drexel-thesis
rm -rf drexel-thesis
18 changes: 18 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
The LaTeX class drexel-thesis is distributed in the docstrip file
drexel-thesis.dtx
with the install file
drexel-thesis.ins
For more information on the docstrip format, see
http://www.ctan.org/tex-archive/info/dtxtut/
http://www.ctan.org/tex-archive/macros/latex/base/

To generate the class file drexel-thesis.cls, the template files, the
pdf documentation, and a bunch of intermediate files, run
make
in this directory. You'll need to install drexel-thesis.cls somewhere
in your texmf tree (or just dump it into the top level of your thesis
directory). Running
make temp-clean
will get rid of the intermediate files.

Happy TeXing!
Binary file added drexel-logo.pdf
Binary file not shown.
Loading

0 comments on commit e8f3411

Please sign in to comment.