1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-31 07:51:08 +03:00

run_directory: add final warning before removal

This commit is contained in:
Kay Sievers 2007-03-21 14:22:50 +01:00
parent e578a44746
commit 1ce3e4fef0

View File

@ -33,6 +33,7 @@ all: $(PROG) $(MAN_PAGES)
$(Q) $(CC) -c $(CFLAGS) $< -o $@
$(PROG): %: $(HEADERS) %.o $(OBJS)
@echo $@ "is DEPRECATED and will be removed, don't use it"
$(E) " LD " $@
$(Q) $(LD) $(LDFLAGS) $@.o $(OBJS) -o $@ $(LIBUDEV) $(LIB_OBJS)
@ -48,6 +49,7 @@ clean:
.PHONY: clean
install-bin: all
@echo $@ "is DEPRECATED and will be removed, don't use it"
$(INSTALL_PROGRAM) -D udev_run_devd $(DESTDIR)$(libudevdir)/udev_run_devd
$(INSTALL_PROGRAM) -D udev_run_hotplugd $(DESTDIR)$(libudevdir)/udev_run_hotplugd
.PHONY: install-bin