Forgot to define INSTALL

This commit is contained in:
Pierre Pronchery 2004-07-01 15:15:33 +00:00
parent fbbfcfb478
commit 600f0233a4

View File

@ -4,6 +4,7 @@ CFLAGS = -g
LDFLAGSF= -lutils LDFLAGSF= -lutils
CC = cc CC = cc
RM = rm -f RM = rm -f
INSTALL = install
all: $(TARGETS) all: $(TARGETS)
@ -21,3 +22,6 @@ clean:
distclean: clean distclean: clean
$(RM) $(TARGETS) $(RM) $(TARGETS)
install: all
$(INSTALL) -m 755 configure $(DESTDIR)$(BINDIR)