From 253866a00ca879895a5ca444b5a9b3387b2187e1 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 30 Aug 2004 17:48:16 +0000 Subject: [PATCH] Initial version. --- src/userprog/build/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/userprog/build/Makefile diff --git a/src/userprog/build/Makefile b/src/userprog/build/Makefile new file mode 100644 index 0000000..6c17a00 --- /dev/null +++ b/src/userprog/build/Makefile @@ -0,0 +1,10 @@ +TOP_SRCDIR = ../.. +DEFINES = -DUSERPROG -DFILESYS -DFILESYS_STUB +SOURCES = $(THREADS_SRC) $(DEVICES_SRC) $(LIB_SRC) $(FILESYS_SRC) \ + $(USERPROG_SRC) +INCLUDES = -I$(TOP_SRCDIR)/threads -I$(TOP_SRCDIR)/devices \ + -I$(TOP_SRCDIR)/lib -I$(TOP_SRCDIR)/filesys \ + -I$(TOP_SRCDIR)/userprog + +include ../../Makefile.inc + -- 2.30.2