summaryrefslogtreecommitdiffstats
path: root/text-utils/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'text-utils/Makefile')
-rw-r--r--text-utils/Makefile79
1 files changed, 79 insertions, 0 deletions
diff --git a/text-utils/Makefile b/text-utils/Makefile
new file mode 100644
index 000000000..40e8d118e
--- /dev/null
+++ b/text-utils/Makefile
@@ -0,0 +1,79 @@
+# Makefile -- Makefile for util-linux Linux utilities
+# Created: Sat Dec 26 20:09:40 1992
+# Revised: Sun Feb 26 16:55:46 1995 by faith@cs.unc.edu
+# Copyright 1992, 1993, 1994, 1995 Rickard E. Faith (faith@cs.unc.edu)
+#
+
+include ../MCONFIG
+
+# Where to put man pages?
+
+MAN1= col.1 colcrt.1 colrm.1 column.1 hexdump.1 more.1 rev.1 \
+ ul.1
+
+ifeq "$(HAVE_STRINGS)" "no"
+MAN1:=$(MAN1) strings.1
+endif
+
+# Where to put binaries?
+# See the "install" rule for the links. . .
+
+BIN= more
+
+USRBIN= col colcrt colrm column hexdump rev ul
+
+ifeq "$(HAVE_STRINGS)" "no"
+USRBIN:=$(USRBIN) strings
+endif
+
+# Where to put datebase files?
+
+USRLIB= more.help
+
+# Programs requiring special compilation
+
+NEEDS_TERMCAP= more ul
+
+all: $(BIN) $(USRBIN)
+
+%.o: %.c
+ $(CC) -c $(CFLAGS) $< -o $@
+
+$(NEEDS_TERMCAP):
+ $(CC) $(LDFLAGS) $^ -o $@ -ltermcap
+
+# Rules for hexdump
+
+hexdump: hexdump.o conv.o display.o hexsyntax.o odsyntax.o parse.o \
+ $(BSD)/getopt.o
+hexdump.o: hexdump.c hexdump.h
+conv.o: conv.c hexdump.h
+display.o: display.c hexdump.h
+hexsyntax.o: hexsyntax.c hexdump.h
+odsyntax.o: odsyntax.c hexdump.h
+parse.o: parse.c hexdump.h
+
+# Rules for everything else
+
+col: col.o $(BSD)/getopt.o
+colcrt: colcrt.o
+colrm: colrm.o
+column: column.o $(BSD)/err.o
+more.o: more.c $(BSD)/pathnames.h
+more: more.o
+rev: rev.o
+strings: strings.o $(BSD)/getopt.o
+ul: ul.o
+
+install install.shadow install.text-utils: all
+ install -d -m 755 /bin /usr/bin /usr/lib /usr/man/man1
+ install -m 755 $(BIN) /bin
+ install -m 755 $(USRBIN) /usr/bin
+ install -m 644 $(USRLIB) /usr/lib
+ install -m 644 $(MAN1) /usr/man/man1
+
+.PHONY: clean distclean
+clean:
+ -rm -f *.o *~ core $(BIN) $(USRBIN)
+
+distclean: clean