X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=blobdiff_plain;f=src%2Fexamples%2FMakefile;h=66bc626d40fb3d9abb8d6c0a6908a6115b7be2e7;hp=e15f824f4aa2766ed9d0d5719958502e8ef69eed;hb=f415a37905c57f61b444806bf84f5405184452aa;hpb=fa97205f611b922b85299e79edba9a0bbbe3cfb2 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