Get rid of unnecessary barrier. Improve comment.
[pintos-anon] / src / tests / userprog / Makefile
1 SRCDIR = ../..
2
3 # Test programs to compile, and a list of sources for each.
4 # To add a new test, put its name on the PROGS list
5 # and then add a name_SRC line that lists its source files.
6 PROGS = bubsort echo halt insult lineup ls matmult mkdir recursor shell
7 bubsort_SRC = bubsort.c
8 echo_SRC = echo.c
9 halt_SRC = halt.c
10 insult_SRC = insult.c
11 lineup_SRC = lineup.c
12 matmult_SRC = matmult.c
13 recursor_SRC = recursor.c
14 shell_SRC = shell.c
15 ls_SRC = ls.c
16 mkdir_SRC = mkdir.c
17
18 include $(SRCDIR)/Makefile.userprog