Wordsmithing.
[pintos-anon] / src / examples / Makefile
index a7bba67f446006568563243cb80a959445a4953c..66bc626d40fb3d9abb8d6c0a6908a6115b7be2e7 100644 (file)
@@ -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