Make it easier to include debug symbols in executables.
[pintos-anon] / src / Makefile.userprog
1 # -*- makefile -*-
2
3 include $(SRCDIR)/Make.config
4
5 SHELL = /bin/sh
6
7 VPATH = $(SRCDIR)
8
9 DEFINES = -DPINTOS -DUSER
10 CPPFLAGS = -nostdinc -I$(SRCDIR) -I- -I$(SRCDIR)/lib -I$(SRCDIR)/lib/user -I.
11
12 # Linker flags.
13 # If you want to include debug symbols, comment out the STRIP assignment,
14 # or invoke `make' as `make STRIP='.
15 # Otherwise debug symbols will be omitted from executables to save space.
16 STRIP = -s
17 LDFLAGS = -nostdlib -static $(STRIP)
18 LDLIBS = $(shell $(CC) -print-libgcc-file-name)
19
20 # C library sources linked into every test program.
21 LIB_SRC  = lib/debug.c                  # Debug code.
22 LIB_SRC += lib/random.c                 # Pseudo-random numbers.
23 LIB_SRC += lib/stdio.c                  # I/O library.
24 LIB_SRC += lib/stdlib.c                 # atoi()
25 LIB_SRC += lib/string.c                 # String functions.
26 LIB_SRC += lib/user/syscall.c           # System calls.
27 LIB_SRC += lib/user/syscall-stub.S      # System call stub.
28 LIB_SRC += lib/user/console.c           # Console code.
29
30 LIB_OBJ = $(patsubst %.c,%.o,$(patsubst %.S,%.o,$(LIB_SRC)))
31 LIB_DEP = $(patsubst %.o,%.d,$(LIB_OBJ))
32 LIB = lib/user/entry.o libc.a
33
34 PROGS_SRC = $(foreach prog,$(PROGS),$($(subst -,_,$(prog))_SRC))
35 PROGS_OBJ = $(patsubst %.c,%.o,$(patsubst %.S,%.o,$(PROGS_SRC)))
36 PROGS_DEP = $(patsubst %.o,%.d,$(PROGS_OBJ))
37
38 all: $(PROGS)
39
40 define TEMPLATE
41 $(2)_OBJ = $(patsubst %.c,%.o,$(patsubst %.S,%.o,$($(2)_SRC)))
42 $(1): $$($(2)_OBJ) $$(LIB)
43         $$(CC) $$(LDFLAGS) $$^ $$(LDLIBS) -o $$@
44 endef
45
46 $(foreach prog,$(PROGS),$(eval $(call TEMPLATE,$(prog),$(subst -,_,$(prog)))))
47
48 $(PROGS): $(LIB)
49
50 libc.a: $(LIB_OBJ)
51         rm -f $@
52         ar r $@ $^
53         ranlib $@
54
55 clean::
56         rm -f $(PROGS) $(PROGS_OBJ) $(PROGS_DEP)
57         rm -f $(LIB_DEP) $(LIB_OBJ) lib/user/entry.[do] libc.a 
58
59 .PHONY: all clean
60
61 -include $(LIB_DEP) $(PROGS_DEP)