X-Git-Url: http://git.subgeniuskitty.com/pdp11-memory-test/.git/blobdiff_plain/0c19b7b9dd9204df7aa38e392c4bdf67c9184bbe..HEAD:/Makefile diff --git a/Makefile b/Makefile index 2d43f29..c66d625 100644 --- a/Makefile +++ b/Makefile @@ -42,10 +42,9 @@ all: aout aout: $(AS) $(AS_FLAGS) -o bootstrap.o bootstrap.s - $(CC) $(CC_FLAGS) -o cstart.o cstart.c $(CC) $(CC_FLAGS) -o pdp11.o pdp11.c - $(CC) $(CC_FLAGS) -o hello.o hello.c - $(LD) $(LD_FLAGS) bootstrap.o cstart.o pdp11.o hello.o -o program.out + $(CC) $(CC_FLAGS) -o memtest.o memtest.c + $(LD) $(LD_FLAGS) bootstrap.o pdp11.o memtest.o -o program.out clean: @rm -rf *.o *.out *.pdp11 *.bin *.core