This is just the following tarball expanded: https://sourceforge.net/projects/nuweb/files/nuweb-1.62.tar.gz/download
95 lines
1.7 KiB
Makefile
Executable File
95 lines
1.7 KiB
Makefile
Executable File
CC = cc
|
|
|
|
CFLAGS = -g
|
|
|
|
TARGET = nuweb
|
|
VERSION = 1.62
|
|
|
|
OBJS = main.o pass1.o latex.o html.o output.o input.o scraps.o names.o \
|
|
arena.o global.o
|
|
|
|
SRCS = main.c pass1.c latex.c html.c output.c input.c scraps.c names.c \
|
|
arena.c global.c
|
|
|
|
HDRS = global.h
|
|
|
|
BIBS = litprog.bib master.bib misc.bib
|
|
|
|
STYS = bibnames.sty html.sty
|
|
|
|
DIST = Makefile README nuweb.w nuwebsty.w test htdocs nuweb.el \
|
|
$(TARGET)doc.tex $(SRCS) $(HDRS) $(BIBS) $(STYS)
|
|
|
|
%.tex: %.w
|
|
./nuweb -r $<
|
|
latex $(basename $<)
|
|
./nuweb -r $<
|
|
|
|
%: %.tex
|
|
latex2html -split 0 $(basename $<)
|
|
|
|
%.hw: %.w
|
|
cp $< $@
|
|
|
|
%.dvi: %.tex
|
|
latex $(basename $<)
|
|
bibtex $(basename $<)
|
|
latex $(basename $<)
|
|
latex $(basename $<)
|
|
|
|
%.pdf: %.tex
|
|
pdflatex $(basename $<)
|
|
bibtex $(basename $<)
|
|
pdflatex $(basename $<)
|
|
pdflatex $(basename $<)
|
|
|
|
all:
|
|
$(MAKE) $(TARGET).tex
|
|
$(MAKE) $(TARGET)
|
|
|
|
tar: $(TARGET)doc.tex
|
|
mkdir $(TARGET)-$(VERSION)
|
|
cp -R $(DIST) $(TARGET)-$(VERSION)
|
|
tar -zcf $(TARGET)-$(VERSION).tar.gz $(TARGET)-$(VERSION)
|
|
rm -rf $(TARGET)-$(VERSION)
|
|
|
|
distribution: all tar nuweb.pdf nuwebdoc.pdf
|
|
|
|
$(TARGET)doc.tex: $(TARGET).tex
|
|
sed -e '/^\\ifshowcode$$/,/^\\fi$$/d' $< > $@
|
|
|
|
check: nuweb
|
|
@declare -i n=0; \
|
|
declare -i f=0; \
|
|
for i in test/*/*.sh ; do \
|
|
echo "Testing $$i"; \
|
|
sh $$i; \
|
|
if test $$? -ne 0; \
|
|
then echo " $$i failed" ; \
|
|
f+=1; \
|
|
fi; \
|
|
n+=1; \
|
|
done; \
|
|
echo "$$n done"; \
|
|
echo "$$f failed"
|
|
|
|
clean:
|
|
-rm -f *.o *.tex *.log *.dvi *.pdf *~ *.blg *.lint *.bbl *.aux *.brf *.out *.toc
|
|
|
|
veryclean: clean
|
|
-rm -f *.c *.h
|
|
|
|
view: $(TARGET).dvi
|
|
xdvi $(TARGET).dvi
|
|
|
|
print: $(TARGET).dvi
|
|
lpr -d $(TARGET).dvi
|
|
|
|
lint:
|
|
lint $(SRCS) > nuweb.lint
|
|
|
|
$(OBJS): global.h
|
|
|
|
$(TARGET): $(OBJS)
|
|
$(CC) -o $(TARGET) $(OBJS)
|