Exported latest revision from sourceforge cvs, discarding history.

This commit is contained in:
Jason Rohrer
2017-10-11 13:16:19 -07:00
parent 9c297bbe8b
commit cc3108fe85
1304 changed files with 79564 additions and 2 deletions
+28
View File
@@ -0,0 +1,28 @@
#
# Generic:
#
# Map all .cpp C++ and C files into .o object files
#
# $@ represents the name.o file
# $< represents the name.cpp file
#
%.eps: %.png
convert $< $@
%.eps: %.sk
sk2ps $< $@
%.dvi: %.tex
latex $<
%.ps: %.dvi
dvips -Ppdf -t letter -o $@ $<
%.pdf: %.ps
ps2pdf $<
all: sheet.pdf
clean:
rm *.pdf *.ps *.dvi *.log *.aux