mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Remove deprecated LOADLIBES variable from the Makefile rules, LDLIBS serves the same purpose these days. Link: https://github.com/ibm-s390-tools/s390-tools/pull/35 Signed-off-by: Dan Horák <dan@danny.cz> Acked-by: Ingo Franzki <ifranzki@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
24 lines
524 B
Makefile
24 lines
524 B
Makefile
include ../common.mak
|
|
|
|
all: cpuplugd
|
|
|
|
LDLIBS += -lm
|
|
|
|
OBJECTS = daemon.o cpu.o info.o terms.o config.o main.o getopt.o mem.o
|
|
|
|
cpuplugd: $(OBJECTS)
|
|
$(LINK) $(ALL_LDFLAGS) $^ $(LDLIBS) -o $@
|
|
|
|
clean:
|
|
rm -f cpuplugd $(OBJECTS)
|
|
|
|
install: all
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 755 cpuplugd \
|
|
$(DESTDIR)$(USRSBINDIR)
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 man/cpuplugd.8 \
|
|
$(DESTDIR)$(MANDIR)/man8
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 man/cpuplugd.conf.5 \
|
|
$(DESTDIR)$(MANDIR)/man5
|
|
|
|
.PHONY: all install clean
|