Česky
Kamil Dudka

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

File detail

Name:DownloadMakefile [Download]
Location: tiny > IAS > strcmp
Size:416 B
Last modification:2007-08-29 17:44

Source code

# Makefile (strcmp)
#
# By Kamil Dudka, 2005
 
CFLAGS=-std=c99 -Wall -pedantic -g -W
 
strcmp: strcmp.o main.o
	gcc $(CFLAGS) -o strcmp strcmp.o main.o
 
strcmp.o: strcmp.asm
	nasm -f elf strcmp.asm
 
main.o: main.c
	gcc $(CFLAGS) -c main.c
 
clean:
	rm -f strcmp strcmp.o main.o
 
strcmp.tar.gz: strcmp.asm main.c README Makefile
	tar -cf strcmp.tar strcmp.asm main.c Makefile README
	gzip strcmp.tar
 
tgz: strcmp.tar.gz