2023-03-01 13:44:48 +01:00
|
|
|
|
2023-03-28 19:35:24 +02:00
|
|
|
PROGRAMS = comparisons if switch
|
|
|
|
|
|
|
|
build: $(PROGRAMS)
|
2023-03-28 17:54:05 +02:00
|
|
|
|
2023-03-08 13:02:03 +01:00
|
|
|
dumps: comparisons.dump if.dump switch.dump
|
|
|
|
|
|
|
|
tests: comparisons.guac if.guac switch.guac
|
|
|
|
|
2023-04-05 12:53:34 +02:00
|
|
|
TOPDIR = ../../..
|
|
|
|
include $(TOPDIR)/Makefile.rules
|
2023-03-28 19:35:24 +02:00
|
|
|
|
|
|
|
clean:
|
|
|
|
$(RM) comparisons comparisons.o if if.o
|
|
|
|
|
2023-03-08 13:02:03 +01:00
|
|
|
# Dependances
|
|
|
|
$(PROGRAMS): % : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o
|