2023-05-09 23:16:16 +02:00
|
|
|
PROGRAMS = halt.guac prints.guac producteur_consommateur.guac join.guac matmult.guac
|
2023-04-05 17:05:55 +02:00
|
|
|
TOPDIR = ../..
|
|
|
|
include $(TOPDIR)/Makefile.rules
|
2023-04-04 20:55:27 +02:00
|
|
|
|
|
|
|
build: $(PROGRAMS)
|
|
|
|
|
|
|
|
dumps: halt.dump prints.dump
|
|
|
|
|
|
|
|
clean:
|
2023-04-05 17:05:55 +02:00
|
|
|
$(RM) *.o *.guac
|
2023-04-04 20:55:27 +02:00
|
|
|
|
2023-04-05 15:09:10 +02:00
|
|
|
$(PROGRAMS): %.guac : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o
|