diff options
author | Damien Zammit <damien@zamaudio.com> | 2022-09-20 03:01:18 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-09-20 23:39:29 +0200 |
commit | 9c7a1bc253ba4a264e8e3d6ae7983f2fc645f2b3 (patch) | |
tree | 07892fe8350ec6defec702790b158ee8bbc038fa /acpi/Makefile | |
parent | 432ecc4bed0ef5341d8dc7637d7631fe05ffd717 (diff) | |
download | hurd-9c7a1bc253ba4a264e8e3d6ae7983f2fc645f2b3.tar.gz hurd-9c7a1bc253ba4a264e8e3d6ae7983f2fc645f2b3.tar.bz2 hurd-9c7a1bc253ba4a264e8e3d6ae7983f2fc645f2b3.zip |
acpi: Convert translator to an emulated mach device
This makes acpi usable as a bootstrap translator.
Message-Id: <20220920030035.931113-1-damien@zamaudio.com>
Diffstat (limited to 'acpi/Makefile')
-rw-r--r-- | acpi/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/acpi/Makefile b/acpi/Makefile index 76f27aef..ceccb351 100644 --- a/acpi/Makefile +++ b/acpi/Makefile @@ -22,15 +22,15 @@ PORTDIR = $(srcdir)/port SRCS = main.c netfs_impl.c acpi.c \ acpifs.c ncache.c options.c func_files.c acpi-ops.c \ - acpiServer.c + acpiServer.c startup_notifyServer.c MIGSRCS = OBJS = $(patsubst %.S,%.o,$(patsubst %.c,%.o, $(SRCS) $(MIGSRCS))) -HURDLIBS= fshelp ports shouldbeinlibc netfs iohelp ihash +HURDLIBS= fshelp ports shouldbeinlibc netfs iohelp ihash machdev trivfs LDLIBS = -lpthread $(libacpica_LIBS) -target = acpi +target = acpi acpi.static include ../Makeconf |