irqchip/s3c24xx: Mark init_eint as __maybe_unused
[linux/fpc-iii.git] / tools / power / acpi / Makefile.rules
blobec87a9e562c0ea0cd08c0cee096850e28f8615e9
1 # tools/power/acpi/Makefile.rules - ACPI tool Makefile
3 # Copyright (c) 2015, Intel Corporation
4 #   Author: Lv Zheng <lv.zheng@intel.com>
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License
8 # as published by the Free Software Foundation; version 2
9 # of the License.
11 $(OUTPUT)$(TOOL): $(TOOL_OBJS) FORCE
12         $(ECHO) "  LD      " $@
13         $(QUIET) $(LD) $(CFLAGS) $(LDFLAGS) $(TOOL_OBJS) -L$(OUTPUT) -o $@
14         $(QUIET) $(STRIPCMD) $@
16 $(OUTPUT)%.o: %.c
17         $(ECHO) "  CC      " $@
18         $(QUIET) $(CC) -c $(CFLAGS) -o $@ $<
20 all: $(OUTPUT)$(TOOL)
21 clean:
22         -find $(OUTPUT) \( -not -type d \) \
23         -and \( -name '*~' -o -name '*.[oas]' \) \
24         -type f -print \
25          | xargs rm -f
26         -rm -f $(OUTPUT)$(TOOL)
28 install-tools:
29         $(INSTALL) -d $(DESTDIR)${sbindir}
30         $(INSTALL_PROGRAM) $(OUTPUT)$(TOOL) $(DESTDIR)${sbindir}
31 uninstall-tools:
32         - rm -f $(DESTDIR)${sbindir}/$(TOOL)
34 install: all install-tools $(EXTRA_INSTALL)
35 uninstall: uninstall-tools $(EXTRA_UNINSTALL)
37 .PHONY: FORCE