Logo  

CS456 - Systems Programming

Displaying exercises/e5/files/Makefile

AS=nasm -g -Fdwarf -felf64
LD=ld

all: pyramid hex

pyramid: pyramid.o lib/lib.o
	$(LD) -o pyramid pyramid.o lib/lib.o

pyramid.o: pyramid.s
	$(AS) pyramid.s

hex: hex.o lib/lib.o
	$(LD) -o hex hex.o lib/lib.o

hex.o: hex.s
	$(AS) hex.s

lib/lib.o: lib/lib.s
	make -C lib