aboutsummaryrefslogtreecommitdiff
path: root/shutdown/Makefile
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2019-03-02 15:31:04 -0800
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2019-03-02 15:32:08 -0800
commit99a69fd8b6034214c0729e9a3a684bbe9d541eb0 (patch)
tree5c6faf43f8e14bbfdb5647e396362a592ce08772 /shutdown/Makefile
parent33421955afb21c5e89a85f0b8f19c3644b18c8ae (diff)
downloadhurd-99a69fd8b6034214c0729e9a3a684bbe9d541eb0.tar.gz
hurd-99a69fd8b6034214c0729e9a3a684bbe9d541eb0.tar.bz2
hurd-99a69fd8b6034214c0729e9a3a684bbe9d541eb0.zip
Add shutdown RPC && ACPI specific disappear routine
* Makefile (prog-subdirs): Add shutdown. * hurd/hurd_types.defs (shutdown_t): New type. * hurd/hurd_types.h (shutdown_t): New type. * hurd/shutdown.defs: New file. * shutdown: New directory.
Diffstat (limited to 'shutdown/Makefile')
-rw-r--r--shutdown/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/shutdown/Makefile b/shutdown/Makefile
new file mode 100644
index 00000000..ced79702
--- /dev/null
+++ b/shutdown/Makefile
@@ -0,0 +1,28 @@
+# Copyright (C) 1992, 1993, 1994, 1995, 1996, 2008 Free Software Foundation, Inc.
+# This file is part of the GNU Hurd.
+#
+# The GNU Hurd 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.
+#
+# The GNU Hurd 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 the GNU Hurd; see the file COPYING. If not, write to
+# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+
+dir := shutdown
+makemode := server
+
+SRCS = shutdown.c acpi_shutdown.c
+HURDLIBS = ports shouldbeinlibc trivfs
+target = shutdown
+MIGSTUBS = shutdownServer.o
+MIGSFLAGS = -imacros $(srcdir)/mig-mutate.h
+OBJS = $(SRCS:.c=.o) $(MIGSTUBS)
+
+include ../Makeconf