Revision 12243,
1.3 KB
checked in by ghudson, 26 years ago
(diff) |
Move console sources here from athena/bin/dash/src/console, and autoconfiscate.
|
Rev | Line | |
---|
[12243] | 1 | # $Id: Makefile.in,v 1.1 1998-12-17 16:26:01 ghudson Exp $ |
---|
| 2 | |
---|
| 3 | SHELL=/bin/sh |
---|
| 4 | VPATH=@srcdir@ |
---|
| 5 | INSTALL=@INSTALL@ |
---|
| 6 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
---|
| 7 | srcdir=@srcdir@ |
---|
| 8 | top_srcdir=@top_srcdir@ |
---|
| 9 | prefix=@prefix@ |
---|
| 10 | exec_prefix=@exec_prefix@ |
---|
| 11 | sbindir=@bindir@ |
---|
| 12 | lsbindir=@lsbindir@ |
---|
| 13 | mandir=@mandir@ |
---|
| 14 | sysconfdir=@sysconfdir@ |
---|
| 15 | bitmapsdir=${sysconfdir}/login/bitmaps |
---|
| 16 | |
---|
| 17 | CC=@CC@ |
---|
| 18 | DEFS=@DEFS@ |
---|
| 19 | CPPFLAGS=@CPPFLAGS@ |
---|
| 20 | CFLAGS=@CFLAGS@ |
---|
| 21 | X_CFLAGS=@X_CFLAGS@ |
---|
| 22 | LDFLAGS=@LDFLAGS@ |
---|
| 23 | X_LIBS=@X_LIBS@ |
---|
| 24 | X_PRE_LIBS=@X_PRE_LIBS@ |
---|
| 25 | X_EXTRA_LIBS=@X_EXTRA_LIBS@ |
---|
| 26 | LIBS=@LIBS@ |
---|
| 27 | ALL_LDFLAGS=${LDFLAGS} ${X_LIBS} |
---|
| 28 | ALL_CFLAGS=${CPPFLAGS} ${CFLAGS} ${X_CFLAGS} ${DEFS} |
---|
| 29 | ALL_LIBS=-lXj ${X_PRE_LIBS} -lX11 ${X_EXTRA_LIBS} ${LIBS} |
---|
| 30 | |
---|
| 31 | all: console |
---|
| 32 | |
---|
| 33 | console: console.o |
---|
| 34 | ${CC} ${ALL_LDFLAGS} -o $@ console.o ${ALL_LIBS} |
---|
| 35 | |
---|
| 36 | .c.o: |
---|
| 37 | ${CC} -c ${ALL_CFLAGS} $< |
---|
| 38 | |
---|
| 39 | check: |
---|
| 40 | |
---|
| 41 | install: |
---|
| 42 | ${top_srcdir}/mkinstalldirs ${DESTDIR}${lsbindir} |
---|
| 43 | ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man8 |
---|
| 44 | ${top_srcdir}/mkinstalldirs ${DESTDIR}${bitmapsdir} |
---|
| 45 | ${INSTALL_PROGRAM} console ${DESTDIR}${lsbindir} |
---|
| 46 | ${INSTALL} -m 444 ${srcdir}/console.8 ${DESTDIR}${mandir}/man8 |
---|
| 47 | ${INSTALL} -m 444 ${srcdir}/console.xbm ${DESTDIR}${bitmapsdir} |
---|
| 48 | ${INSTALL} -m 444 ${srcdir}/gray ${DESTDIR}${bitmapsdir} |
---|
| 49 | |
---|
| 50 | clean: |
---|
| 51 | rm -f console.o console |
---|
| 52 | |
---|
| 53 | distclean: clean |
---|
| 54 | rm -f config.cache config.log config.status Makefile |
---|
Note: See
TracBrowser
for help on using the repository browser.