X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=inline;f=src%2Fexamples%2FMakefile;h=66bc626d40fb3d9abb8d6c0a6908a6115b7be2e7;hb=5440a348242d2a56cee111000b676ac3d7d84ea5;hp=e15f824f4aa2766ed9d0d5719958502e8ef69eed;hpb=22acef028a140604f5b34705263ba70959fcf4f4;p=pintos-anon diff --git a/src/examples/Makefile b/src/examples/Makefile index e15f824..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