2023-04-04 20:55:27 +02:00
|
|
|
|
|
|
|
PROGRAMS = halt prints
|
|
|
|
|
|
|
|
build: $(PROGRAMS)
|
|
|
|
|
|
|
|
dumps: halt.dump prints.dump
|
|
|
|
|
|
|
|
tests: halt.guac prints.guac
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$(RM) halt.o halt prints prints.o
|
|
|
|
|
2023-04-05 15:09:10 +02:00
|
|
|
TOPDIR = ../..
|
2023-04-05 12:53:34 +02:00
|
|
|
include $(TOPDIR)/Makefile.rules
|
2023-04-04 20:55:27 +02:00
|
|
|
|
|
|
|
$(PROGRAMS): % : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o
|