X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fexamples%2FMakefile;h=a7bba67f446006568563243cb80a959445a4953c;hb=f52927b361af572818c9ff885eba9e1ca1fe22f9;hp=ae1df0fc43b8575afe18c1c8188426488129567e;hpb=615bf3b3d2a8573ed6fb9ddc0055745e163ac999;p=pintos-anon diff --git a/src/examples/Makefile b/src/examples/Makefile index ae1df0f..a7bba67 100644 --- a/src/examples/Makefile +++ b/src/examples/Makefile @@ -3,16 +3,25 @@ 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 = bubsort echo halt insult lineup ls matmult mkdir recursor shell -bubsort_SRC = bubsort.c +PROGS = cat cmp cp echo halt hex-dump ls mcp mkdir rm shell \ + bubsort insult lineup matmult recursor + +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 +ls_SRC = ls.c +mcp_SRC = mcp.c +mkdir_SRC = mkdir.c +rm_SRC = rm.c +shell_SRC = shell.c + +bubsort_SRC = bubsort.c insult_SRC = insult.c lineup_SRC = lineup.c matmult_SRC = matmult.c recursor_SRC = recursor.c -shell_SRC = shell.c -ls_SRC = ls.c -mkdir_SRC = mkdir.c include $(SRCDIR)/Makefile.userprog