15 lines
244 B
Makefile
15 lines
244 B
Makefile
PROGRAMS = jump ret
|
|
|
|
build: $(PROGRAMS)
|
|
|
|
dumps: jump.dump ret.dump
|
|
|
|
tests: jump.guac ret.guac
|
|
|
|
clean:
|
|
$(RM) jump jump.o ret ret.o
|
|
|
|
TOPDIR = ../../..
|
|
include $(TOPDIR)/Makefile.rules
|
|
|
|
$(PROGRAMS): % : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o |