Remove "insult" example
[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 pwd rm shell \
7         bubsort lineup matmult recursor
8
9 # Should work from project 2 onward.
10 cat_SRC = cat.c
11 cmp_SRC = cmp.c
12 cp_SRC = cp.c
13 echo_SRC = echo.c
14 halt_SRC = halt.c
15 hex-dump_SRC = hex-dump.c
16 lineup_SRC = lineup.c
17 ls_SRC = ls.c
18 recursor_SRC = recursor.c
19 rm_SRC = rm.c
20
21 # Should work in project 3; also in project 4 if VM is included.
22 bubsort_SRC = bubsort.c
23 matmult_SRC = matmult.c
24 mcat_SRC = mcat.c
25 mcp_SRC = mcp.c
26
27 # Should work in project 4.
28 mkdir_SRC = mkdir.c
29 pwd_SRC = pwd.c
30 shell_SRC = shell.c
31
32 include $(SRCDIR)/Make.config
33 include $(SRCDIR)/Makefile.userprog