English
Kamil Dudka

Drobné programy (C, C++, C#, ...)

Detail souboru

Jméno:StáhnoutMakefile [Stáhnout]
Umístění: tiny > IAS > strcmp
Velikost:416 B
Poslední změna:2022-09-09 13:06

Zdrojový kód

# 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