summaryrefslogtreecommitdiffstats
path: root/hwclock/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'hwclock/Makefile')
-rw-r--r--hwclock/Makefile36
1 files changed, 0 insertions, 36 deletions
diff --git a/hwclock/Makefile b/hwclock/Makefile
deleted file mode 100644
index 730a355a8..000000000
--- a/hwclock/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-# Makefile -- Makefile for util-linux Linux utilities
-#
-include ../make_include
-include ../MCONFIG
-
-# Where to put man pages?
-
-MAN8= hwclock.8
-
-# Where to put binaries?
-# See the "install" rule for the links. . .
-
-SBIN= hwclock
-
-
-all: $(SBIN)
-
-
-hwclock.o: hwclock.c
-hwclock.o cmos.o kd.o: ../defines.h
-hwclock.o cmos.o rtc.o kd.o: clock.h
-hwclock: hwclock.o cmos.o rtc.o kd.o
-
-CWFLAGS := $(subst -Wmissing-prototypes,,$(CFLAGS))
-
-cmos.o: cmos.c
- $(CC) $(CWFLAGS) -c cmos.c -o $@
-# $< expands to clock.h on some systems
-
-install: all
- $(INSTALLDIR) $(SBINDIR) $(BINDIR) $(USRBINDIR)
- $(INSTALLBIN) $(SBIN) $(SBINDIR)
- $(INSTALLMAN) $(MAN8) $(MAN8DIR)
-
-clean:
- -rm -f *.o *~ core $(SBIN)