BurritOS/test/riscv_instructions/boolean_logic/Makefile

14 lines
271 B
Makefile
Raw Normal View History

2023-03-01 13:44:48 +01:00
2023-04-05 17:05:55 +02:00
PROGRAMS = comparisons.guac if.guac switch.guac
TOPDIR = ../../..
include $(TOPDIR)/Makefile.rules
2023-03-28 19:35:24 +02:00
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
2023-03-28 19:35:24 +02:00
clean:
2023-04-05 17:05:55 +02:00
$(RM) *.o *.guac
2023-03-28 19:35:24 +02:00
2023-03-08 13:02:03 +01:00
# Dependances
2023-04-05 17:05:55 +02:00
$(PROGRAMS): %.guac : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o