|
Revision 449, 1.0 kB
(checked in by hazelsct, 6 years ago)
|
|
Separated shorts.c into new file, documented it. Other doc changes.
|
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | all: ebsurfweb ebaporate README.pdf |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | ebsurfweb: ebsurfweb.o ebsurf.o shorts.o |
|---|
| 8 | $(CC) $^ -lm -o $@ |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | ebaporate: ebaporate.o |
|---|
| 12 | $(CC) $^ -lm -o $@ |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | ebsurf.o: ebsurf.c ebsurf.h |
|---|
| 16 | shorts.o: shorts.c ebsurf.h |
|---|
| 17 | ebsurfweb.o: ebsurfweb.c ebsurf.h |
|---|
| 18 | |
|---|
| 19 | CXREF_SOURCES = ebsurfweb.c ebsurf.c ebsurf.h shorts.c ebaporate.c |
|---|
| 20 | |
|---|
| 21 | cxref-tex: $(CXREF_SOURCES) README.tex |
|---|
| 22 | cxref -latex2e $(CXREF_SOURCES) |
|---|
| 23 | rm -f cxref.tex |
|---|
| 24 | cxref -latex2e -NREADME $(CXREF_SOURCES) |
|---|
| 25 | touch $@ |
|---|
| 26 | |
|---|
| 27 | README.pdf: README.tex cxref-tex |
|---|
| 28 | pdflatex $< |
|---|
| 29 | pdflatex $< |
|---|
| 30 | |
|---|
| 31 | clean: |
|---|
| 32 | rm -f ebsurfweb ebaporate *.o *.c.tex *.h.tex cxref-tex \ |
|---|
| 33 | cxref.sty fonts.sty page.sty README.aux README.log *~ \ |
|---|
| 34 | flux*.ps gen*.ps his*.ps last*.ps surf*.ps temp*.ps |
|---|