Move segment rounding LDFLAGS into tests/userprog/Makefile.
[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 = -DUSER
10 CPPFLAGS = -nostdinc -I$(SRCDIR) -I- -I$(SRCDIR)/lib -I$(SRCDIR)/lib/user
11
12 # Linker flags.
13 LDFLAGS = -nostdlib -static -s
14 LDLIBS = $(shell $(CC) -print-libgcc-file-name)
15
16 # C library sources linked into every test program.
17 LIB_SRC  = lib/debug.c                  # Debug code.
18 LIB_SRC += lib/random.c                 # Pseudo-random numbers.
19 LIB_SRC += lib/stdio.c                  # I/O library.
20 LIB_SRC += lib/stdlib.c                 # atoi()
21 LIB_SRC += lib/string.c                 # String functions.
22 LIB_SRC += lib/user/syscall.c           # System calls.
23 LIB_SRC += lib/user/syscall-stub.S      # System call stub.
24 LIB_SRC += lib/user/console.c           # Console code.
25
26 LIB_OBJ = $(patsubst %.c,%.o,$(patsubst %.S,%.o,$(LIB_SRC)))
27 LIB_DEP = $(patsubst %.o,%.d,$(LIB_OBJ))
28 LIB = lib/user/entry.o libc.a
29
30 PROGS_SRC = $(foreach prog,$(PROGS),$($(prog)_SRC))
31 PROGS_OBJ = $(patsubst %.c,%.o,$(patsubst %.S,%.o,$(PROGS_SRC)))
32 PROGS_DEP = $(patsubst %.o,%.d,$(PROGS_OBJ))
33
34 all: $(PROGS)
35
36 define TEMPLATE
37 $(1)_OBJ = $(patsubst %.c,%.o,$(patsubst %.S,%.o,$($(1)_SRC)))
38 $(1): $$($(1)_OBJ) $$(LIB)
39 endef
40
41 $(foreach prog,$(PROGS),$(eval $(call TEMPLATE,$(prog))))
42
43 $(PROGS): $(LIB)
44
45 libc.a: $(LIB_OBJ)
46         rm -f $@
47         ar r $@ $^
48         ranlib $@
49
50 clean::
51         rm -f $(PROGS) $(PROGS_OBJ) $(PROGS_DEP)
52         rm -f $(LIB_DEP) $(LIB_OBJ) lib/user/entry.[do] libc.a 
53
54 .PHONY: all clean
55
56 -include $(LIB_DEP) $(PROGS_DEP)