remove references to undefined variables

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5010 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1998-06-01 23:50:11 +00:00
parent 19ac2c491a
commit 06cdb753aa
12 changed files with 18 additions and 86 deletions

View File

@@ -107,20 +107,14 @@ distclean: clean
realclean: distclean
rm -f TAGS
dist: $(DISTFILES)
for file in $(DISTFILES); do \
ln $$file ../`cat ../.fname`/lib \
|| cp -p $$file ../`cat ../.fname`/lib; \
done
$(LIBNAME).a: $(OBJECTS)
rm -f $@
$(AR) cr $@ $(OBJECTS)
-$(RANLIB) $@
$(LIBNAME).$(SHLIBEXT): $(OBJECTS) $(LDOBJ)
$(LIBNAME).$(SHLIBEXT): $(OBJECTS)
rm -f $@
$(LDSHARED) -o $@ $(OBJECTS) $(LDOBJ) $(LIB_DEPS)
$(LDSHARED) -o $@ $(OBJECTS) $(LIB_DEPS)
@build_symlink_command@
COBJ = compile_et.o parse.o lex.o
@@ -143,4 +137,4 @@ lex.c: $(srcdir)/lex.l
snprintf.c:
$(LN_S) $(srcdir)/../roken/snprintf.c .
.PHONY: all Wall install uninstall clean mostlyclean distclean realclean dist
.PHONY: all Wall install uninstall clean mostlyclean distclean realclean