aboutsummaryrefslogtreecommitdiffstats
path: root/README
blob: c5182e7193a3c68183deb6a678738036591a71b8 (plain)
1
2
3
4
5
6
#
# $Id: README,v 1.24 2003/08/01 05:15:42 reinelt Exp $
#

Sorry, there is no README anymore.
Go to http://lcd4linux.sourceforge.net for all the documentation.
ht .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
prefix	    = @prefix@
exec_prefix = @exec_prefix@

bindir	    = @bindir@
datarootdir = $(prefix)/share
mandir	    = @mandir@
datadir     = $(datarootdir)/@PACKAGE_NAME@
exec_perms  = 0755
install-suid-root: exec_perms = 4755

CC	= @CC@
CFLAGS	= @CFLAGS@
DEFS	= @DEFS@
LDLIBS	= @LIBS@

INSTALL = @INSTALL@
RM	= rm -vf

MAIN	= @PACKAGE_NAME@.c
HEADERS	= @PACKAGE_NAME@.h llist.h iw_if.h
PURESRC	= $(filter-out $(MAIN),$(wildcard *.c))
OBJS	= $(PURESRC:.c=.o)
DOCS	= README NEWS THANKS AUTHORS COPYING ChangeLog

%.o: %.c $(HEADERS)
	$(CC) $(CFLAGS) $(DEFS) -c -o $@ $<

all: @PACKAGE_NAME@
@PACKAGE_NAME@: $(MAIN) $(OBJS)

$(MAIN): Makefile
Makefile: Makefile.in config.status
	./config.status
config.status: configure
	./config.status --recheck
configure: configure.ac
	autoconf

tags: $(MAIN) $(PURESRC) $(HEADERS)
	ctags $^ > $@

.PHONY: all install uninstall clean distclean

install: install-binaries install-docs

install-suid-root install-binaries: all
	$(INSTALL) -m 0755 -d $(DESTDIR)$(bindir)
	$(INSTALL) -m $(exec_perms) @PACKAGE_NAME@ $(DESTDIR)$(bindir)

install-docs: @PACKAGE_NAME@.1 @PACKAGE_NAME@rc.5 $(DOCS)
	$(INSTALL) -m 0755 -d $(DESTDIR)$(mandir)/man1
	$(INSTALL) -m 0644 @PACKAGE_NAME@.1 $(DESTDIR)$(mandir)/man1
	$(INSTALL) -m 0755 -d $(DESTDIR)$(mandir)/man5
	$(INSTALL) -m 0644 @PACKAGE_NAME@rc.5 $(DESTDIR)$(mandir)/man5
	$(INSTALL) -m 0755 -d $(DESTDIR)$(datadir)
	$(INSTALL) -m 0644 $(DOCS) $(DESTDIR)$(datadir)

uninstall:
	@$(RM) $(bindir)/@PACKAGE_NAME@
	@$(RM) $(mandir)/man1/@PACKAGE_NAME@.1
	@$(RM) $(mandir)/man5/@PACKAGE_NAME@rc.5
	@$(RM) -r $(datadir)

clean:
	@$(RM) *.o *~ tags @PACKAGE_NAME@

distclean: uninstall clean
	@$(RM) config.status config.log config.cache Makefile
	@$(RM) -r autom4te.cache