Česky
Kamil Dudka

Tiny programs (C, C++, C#, ...)

File detail

Name:DownloadMakefile [Download]
Location: tiny > IZP > proj3
Size:356 B
Last modification:2022-09-09 13:06

Source code

# Makefile
#
# By Kamil Dudka, 2004
 
CFLAGS=-std=c99 -Wall -pedantic
TARBALL=Makefile proj3.c proj3.tex
 
all: proj3 doc
 
doc: proj3.pdf
 
proj3: proj3.c
 
proj3.pdf: proj3.dvi
	dvipdf proj3.dvi
 
proj3.dvi: proj3.tex
	cslatex proj3.tex
	cslatex proj3.tex
 
clean:
	rm -f proj3
 
izp-proj3.tar.gz: $(TARBALL)
	tar c $(TARBALL) | gzip > $@
 
tgz: izp-proj3.tar.gz