summaryrefslogtreecommitdiffstats
path: root/pintos-progos/examples/Makefile
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2012-03-27 11:51:08 +0200
committermanuel <manuel@mausz.at>2012-03-27 11:51:08 +0200
commit4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b (patch)
tree868c52e06f207b5ec8a3cc141f4b8b2bdfcc165c /pintos-progos/examples/Makefile
parenteae0bd57f0a26314a94785061888d193d186944a (diff)
downloadprogos-4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b.tar.gz
progos-4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b.tar.bz2
progos-4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b.zip
reorganize file structure to match the upstream requirements
Diffstat (limited to 'pintos-progos/examples/Makefile')
-rw-r--r--pintos-progos/examples/Makefile36
1 files changed, 0 insertions, 36 deletions
diff --git a/pintos-progos/examples/Makefile b/pintos-progos/examples/Makefile
deleted file mode 100644
index f773950..0000000
--- a/pintos-progos/examples/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
1SRCDIR = ..
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.
6PROGS = cat cmp cp echo halt hello hex-dump ls mcat mcp mkdir pwd rm shell \
7 bubsort insult lineup matmult recursor test
8
9# Should work from project 2 onward.
10cat_SRC = cat.c
11cmp_SRC = cmp.c
12cp_SRC = cp.c
13echo_SRC = echo.c
14halt_SRC = halt.c
15hello_SRC = hello.c
16hex-dump_SRC = hex-dump.c
17insult_SRC = insult.c
18lineup_SRC = lineup.c
19ls_SRC = ls.c
20recursor_SRC = recursor.c
21rm_SRC = rm.c
22test_SRC = test.c
23
24# Should work in project 3; also in project 4 if VM is included.
25bubsort_SRC = bubsort.c
26matmult_SRC = matmult.c
27mcat_SRC = mcat.c
28mcp_SRC = mcp.c
29
30# Should work in project 4.
31mkdir_SRC = mkdir.c
32pwd_SRC = pwd.c
33shell_SRC = shell.c
34
35include $(SRCDIR)/Make.config
36include $(SRCDIR)/Makefile.userprog