X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2FMakefile.userprog;h=c5e6f3db33c6e992682c7b61818846b10b6a5034;hb=c9613f4d1fd208911409de6f82b430e5f9a595ae;hp=0d93189d68a87ff0c4fabdf2dba6a88ef13fea11;hpb=53c6e81d1cff87ffccfca368adcca8b092f2a0d1;p=pintos-anon diff --git a/src/Makefile.userprog b/src/Makefile.userprog index 0d93189..c5e6f3d 100644 --- a/src/Makefile.userprog +++ b/src/Makefile.userprog @@ -6,11 +6,11 @@ SHELL = /bin/sh VPATH = $(SRCDIR) -DEFINES = -DUSER +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 LDLIBS = $(shell $(CC) -print-libgcc-file-name) # C library sources linked into every test program. @@ -20,7 +20,6 @@ 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)))