X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fexamples%2FMakefile;h=be94f7a3eedfc6160eeef50ff566f6497546453a;hb=b568df7ae9;hp=66bc626d40fb3d9abb8d6c0a6908a6115b7be2e7;hpb=a85e535e696138054a7b461ea8072f0d76c5b668;p=pintos-anon diff --git a/src/examples/Makefile b/src/examples/Makefile index 66bc626..be94f7a 100644 --- a/src/examples/Makefile +++ b/src/examples/Makefile @@ -3,27 +3,31 @@ 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 mcat mcp mkdir rm shell \ - bubsort insult lineup matmult recursor +PROGS = cat cmp cp echo halt hex-dump ls mcat mcp mkdir pwd rm shell \ + bubsort lineup matmult recursor +# Should work from project 2 onward. cat_SRC = cat.c cmp_SRC = cmp.c cp_SRC = cp.c echo_SRC = echo.c halt_SRC = halt.c hex-dump_SRC = hex-dump.c +lineup_SRC = lineup.c ls_SRC = ls.c -mcat_SRC = mcat.c -mcp_SRC = mcp.c -mkdir_SRC = mkdir.c +recursor_SRC = recursor.c rm_SRC = rm.c -shell_SRC = shell.c +# Should work in project 3; also in project 4 if VM is included. bubsort_SRC = bubsort.c -insult_SRC = insult.c -lineup_SRC = lineup.c matmult_SRC = matmult.c -recursor_SRC = recursor.c +mcat_SRC = mcat.c +mcp_SRC = mcp.c + +# Should work in project 4. +mkdir_SRC = mkdir.c +pwd_SRC = pwd.c +shell_SRC = shell.c include $(SRCDIR)/Make.config include $(SRCDIR)/Makefile.userprog