X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fexamples%2FMakefile;h=66bc626d40fb3d9abb8d6c0a6908a6115b7be2e7;hb=5440a348242d2a56cee111000b676ac3d7d84ea5;hp=a7bba67f446006568563243cb80a959445a4953c;hpb=f52927b361af572818c9ff885eba9e1ca1fe22f9;p=pintos-anon diff --git a/src/examples/Makefile b/src/examples/Makefile index a7bba67..66bc626 100644 --- a/src/examples/Makefile +++ b/src/examples/Makefile @@ -3,7 +3,7 @@ SRCDIR = .. # Test programs to compile, and a list of sources for each. # To add a new test, put its name on the PROGS list # and then add a name_SRC line that lists its source files. -PROGS = cat cmp cp echo halt hex-dump ls mcp mkdir rm shell \ +PROGS = cat cmp cp echo halt hex-dump ls mcat mcp mkdir rm shell \ bubsort insult lineup matmult recursor cat_SRC = cat.c @@ -13,6 +13,7 @@ echo_SRC = echo.c halt_SRC = halt.c hex-dump_SRC = hex-dump.c ls_SRC = ls.c +mcat_SRC = mcat.c mcp_SRC = mcp.c mkdir_SRC = mkdir.c rm_SRC = rm.c @@ -24,4 +25,5 @@ lineup_SRC = lineup.c matmult_SRC = matmult.c recursor_SRC = recursor.c +include $(SRCDIR)/Make.config include $(SRCDIR)/Makefile.userprog