Česky
Kamil Dudka

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

File detail

Name:DownloadMakefile [Download]
Location: tiny > IZP > proj1
Size:176 B
Last modification:2009-12-21 17:54

Source code

# Makefile
#
# By Kamil Dudka, 2004
 
CFLAGS=-std=c99
 
proj1: proj1.c
 
clean:
	rm -f proj1
 
izp-proj1.tar.gz: proj1.c
	tar c proj1.c Makefile | gzip > $@
 
tgz: izp-proj1.tar.gz