UMBC CMSC 313 -- Assembly Language Segment Previous | Next


Makefile

hello : hello.o  
	gcc  -o hello hello.o  
hello.o : hello.asm  
	nasm -g -f elf hello.asm 
clean : 
	rm hello hello.o  


Previous | Next

©2004, Gary L. Burt