# $Header: /diskb/home/alexis/dev/upsd/bin/RCS/Makefile,v 1.2 1999/01/07 13:30:56 alexis Exp $ SUPPORT_DIR = ../support include ../Makefile.defs BIN_FILES = upsd compile: $(BIN_FILES) clean: rm -f *.o upsd install: compile $(INSTALL_CMD) -o root -g root -m 555 $(BIN_FILES) \ $(LCLBINDIR) uninstall: -cd $(LCLBINDIR) && rm -f $(BIN_FILES) upsd: upsd.o utils.o $(CC) -o $@ $^ upsd.o: upsd.c utils.h $(CC) -c -DLOCK_DIR=\"$(LOCK_DIR)\" \ -DUUCP_STYLE_LOCKS=$(UUCP_STYLE_LOCKS) $< utils.o: utils.h