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