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