|
|
1.1 root 1: #
2: # Copyright, 1986, Massachusetts Institute of Technology.
3: # xcons - trivial program to snarf console output and redirect it.
4: #
5: #
6:
7: DESTDIR =
8: INCLUDES = -I../include
9:
10: CONFDIR = /usr/new
11: CFLAGS = -O $(INCLUDES)
12: PROG = xcons
13:
14: OBJS = $(PROG).o
15:
16: all: $(PROG)
17:
18: install: all
19: install -c $(PROG) $(DESTDIR)$(CONFDIR)
20: chmod 755 $(DESTDIR)$(CONFDIR)/$(PROG)
21:
22: clean:
23: rm -f $(PROG).o $(PROG) *~ \#*
24:
25: igrind:
26: igrind $(PROG).c
27:
28: $(PROG): $(OBJS)
29: $(CC) $(CFLAGS) -o $(PROG) $(OBJS)
30:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.