66bc626d40fb3d9abb8d6c0a6908a6115b7be2e7
[pintos-anon] / src / examples / 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 = cat cmp cp echo halt hex-dump ls mcat mcp mkdir rm shell \
7         bubsort insult lineup matmult recursor
8
9 cat_SRC = cat.c
10 cmp_SRC = cmp.c
11 cp_SRC = cp.c
12 echo_SRC = echo.c
13 halt_SRC = halt.c
14 hex-dump_SRC = hex-dump.c
15 ls_SRC = ls.c
16 mcat_SRC = mcat.c
17 mcp_SRC = mcp.c
18 mkdir_SRC = mkdir.c
19 rm_SRC = rm.c
20 shell_SRC = shell.c
21
22 bubsort_SRC = bubsort.c
23 insult_SRC = insult.c
24 lineup_SRC = lineup.c
25 matmult_SRC = matmult.c
26 recursor_SRC = recursor.c
27
28 include $(SRCDIR)/Make.config
29 include $(SRCDIR)/Makefile.userprog