16 lines
258 B
Makefile
16 lines
258 B
Makefile
|
|
||
|
PROGRAMS = halt prints
|
||
|
|
||
|
build: $(PROGRAMS)
|
||
|
|
||
|
dumps: halt.dump prints.dump
|
||
|
|
||
|
tests: halt.guac prints.guac
|
||
|
|
||
|
clean:
|
||
|
$(RM) halt.o halt prints prints.o
|
||
|
|
||
|
TOPDIR = ../..
|
||
|
include $(TOPDIR)/Makefile.tests
|
||
|
|
||
|
$(PROGRAMS): % : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o
|