X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2FMakefile.userprog;h=447088e8e7896212d8b5ce91879a0854b43f4cd4;hb=4090f8c7c01eb477de1828d023f1bfbc5510b4c4;hp=72e35ce7ee92a285e4d1b6562318247bda427754;hpb=615bf3b3d2a8573ed6fb9ddc0055745e163ac999;p=pintos-anon diff --git a/src/Makefile.userprog b/src/Makefile.userprog index 72e35ce..447088e 100644 --- a/src/Makefile.userprog +++ b/src/Makefile.userprog @@ -1,16 +1,11 @@ # -*- makefile -*- -include $(SRCDIR)/Make.config - $(PROGS): CPPFLAGS += -I$(SRCDIR)/lib/user -I. # Linker flags. $(PROGS): LDFLAGS = -nostdlib -static -Wl,-T,$(LDSCRIPT) $(PROGS): LDLIBS = $(shell $(CC) -print-libgcc-file-name) -$(PROGS): LDSCRIPT = $(SRCDIR)/lib/user/normal.lds -# Uncomment the following line to round up section sizes -# to full pages (for debugging only). -#$(PROGS): LDSCRIPT = $(SRCDIR)/lib/user/fullpage.lds +$(PROGS): LDSCRIPT = $(SRCDIR)/lib/user/user.lds # Library code shared between kernel and user programs. lib_SRC = lib/debug.c # Debug code.