X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftests%2Fuserprog%2FMakefile;h=8f7efe53bdae6527caa476c9d5f32fc1156f0877;hb=202cb2ab659c2ff94a3cf58ae86400095e767fc3;hp=2aad5a3e5f4f0d097ff8b1115dc020da7c15f615;hpb=f113b3ab259ac5416a6ce322012fc2727124b638;p=pintos-anon diff --git a/src/tests/userprog/Makefile b/src/tests/userprog/Makefile index 2aad5a3..8f7efe5 100644 --- a/src/tests/userprog/Makefile +++ b/src/tests/userprog/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 = bubsort echo halt insult lineup matmult recursor shell +PROGS = bubsort echo halt insult lineup ls matmult mkdir recursor shell bubsort_SRC = bubsort.c echo_SRC = echo.c halt_SRC = halt.c @@ -12,5 +12,7 @@ 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