13 lines
253 B
Makefile
13 lines
253 B
Makefile
PROGRAMS = halt.guac prints.guac producteur_consommateur.guac
|
|
TOPDIR = ../..
|
|
include $(TOPDIR)/Makefile.rules
|
|
|
|
build: $(PROGRAMS)
|
|
|
|
dumps: halt.dump prints.dump
|
|
|
|
clean:
|
|
$(RM) *.o *.guac
|
|
|
|
$(PROGRAMS): %.guac : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o
|