summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1995-04-05 00:58:28 +0000
committerMiles Bader <miles@gnu.org>1995-04-05 00:58:28 +0000
commit66c1fc6cef92722dac6798ec3c55b383905bb1b8 (patch)
treedf846779c1cae5fd973d268c6bf1769262728296
parent28630f6da0ab09f1a87852b7221f7b99bc2ef21c (diff)
Initial revision
-rw-r--r--devio/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/devio/Makefile b/devio/Makefile
new file mode 100644
index 00000000..2fcf94cd
--- /dev/null
+++ b/devio/Makefile
@@ -0,0 +1,35 @@
+#
+# Copyright (C) 1995 Free Software Foundation, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2, or (at
+# your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+dir := devio
+makemode := server
+
+target = devio
+SRCS = dev.c iostate.c window.c devio.c open.c devpager.c io.c rdwr.c mem.c
+LCLHDRS = dev.h iostate.h window.h open.h ptypes.h mem.h
+HURDLIBS = libtrivfs libpager libports libfshelp libthreads
+
+OBJS = $(SRCS:.c=.o) error.o
+
+CPPFLAGS += -I../lib
+CPPFLAGS += $(CPPFLAGS-$(notdir $<))
+
+CPPFLAGS-error.c = -Dprogram_name=program_invocation_name -DHAVE_VPRINTF -DSTDC_HEADERS -DHAVE_STRERROR
+
+vpath %.c ../lib
+
+include ../Makeconf