X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2FMakefile.userprog;h=2ecb8e737f9f6061506e84fc1e067e2ac685a021;hb=05a5604be6df472e30d2495d3187259da2e380b8;hp=26d622d92d35848af03e1363e68e1fd79506f979;hpb=5979ba5edd96453f3658e58bdbd7686a4f4380e2;p=pintos-anon diff --git a/src/Makefile.userprog b/src/Makefile.userprog index 26d622d..2ecb8e7 100644 --- a/src/Makefile.userprog +++ b/src/Makefile.userprog @@ -6,16 +6,16 @@ SHELL = /bin/sh VPATH = $(SRCDIR) -DEFINES = -DUSER -CPPFLAGS = -nostdinc -I$(SRCDIR) -I- -I$(SRCDIR)/lib -I$(SRCDIR)/lib/user +DEFINES = -DPINTOS -DUSER +CPPFLAGS = -nostdinc -I$(SRCDIR) -I- -I$(SRCDIR)/lib -I$(SRCDIR)/lib/user -I. # Linker flags. -LDFLAGS = -nostdlib -static -s +LDFLAGS = -nostdlib -static -Wl,-T,$(LDSCRIPT) LDLIBS = $(shell $(CC) -print-libgcc-file-name) - -# Uncomment the line below to round up segment sizes to full pages for -# testing purposes only. -#LDFLAGS += -Wl,-T,fullpage.x +LDSCRIPT = $(SRCDIR)/lib/user/normal.lds +# Uncomment the following line to round up section sizes +# to full pages (for debugging only). +#LDSCRIPT = $(SRCDIR)/lib/user/fullpage.lds # C library sources linked into every test program. LIB_SRC = lib/debug.c # Debug code. @@ -24,27 +24,25 @@ LIB_SRC += lib/stdio.c # I/O library. LIB_SRC += lib/stdlib.c # atoi() LIB_SRC += lib/string.c # String functions. LIB_SRC += lib/user/syscall.c # System calls. -LIB_SRC += lib/user/syscall-stub.S # System call stub. LIB_SRC += lib/user/console.c # Console code. LIB_OBJ = $(patsubst %.c,%.o,$(patsubst %.S,%.o,$(LIB_SRC))) LIB_DEP = $(patsubst %.o,%.d,$(LIB_OBJ)) LIB = lib/user/entry.o libc.a -PROGS_SRC = $(foreach prog,$(PROGS),$($(prog)_SRC)) +PROGS_SRC = $(foreach prog,$(PROGS),$($(subst -,_,$(prog))_SRC)) PROGS_OBJ = $(patsubst %.c,%.o,$(patsubst %.S,%.o,$(PROGS_SRC))) PROGS_DEP = $(patsubst %.o,%.d,$(PROGS_OBJ)) all: $(PROGS) define TEMPLATE -$(1)_OBJ = $(patsubst %.c,%.o,$(patsubst %.S,%.o,$($(1)_SRC))) -$(1): $$($(1)_OBJ) $$(LIB) +$(2)_OBJ = $(patsubst %.c,%.o,$(patsubst %.S,%.o,$($(2)_SRC))) +$(1): $$($(2)_OBJ) $$(LIB) $$(LDSCRIPT) + $$(CC) $$(LDFLAGS) $$($(2)_OBJ) $$(LIB) $$(LDLIBS) -o $$@ endef -$(foreach prog,$(PROGS),$(eval $(call TEMPLATE,$(prog)))) - -$(PROGS): $(LIB) +$(foreach prog,$(PROGS),$(eval $(call TEMPLATE,$(prog),$(subst -,_,$(prog))))) libc.a: $(LIB_OBJ) rm -f $@