diff --git a/Makefile b/Makefile index f4de974..2838b81 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ PACKAGE = configure VERSION = 0.0.5 SUBDIRS = src RM = rm -f -LN = ln -sf +LN = ln -f TAR = tar -czvf @@ -19,7 +19,7 @@ distclean: dist: $(RM) -r $(PACKAGE)-$(VERSION) - $(LN) . $(PACKAGE)-$(VERSION) + $(LN) -s . $(PACKAGE)-$(VERSION) @$(TAR) $(PACKAGE)-$(VERSION).tar.gz \ $(PACKAGE)-$(VERSION)/src/configure.c \ $(PACKAGE)-$(VERSION)/src/makefile.c \ diff --git a/src/Makefile b/src/Makefile index 5ed98ab..c3512a8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -10,6 +10,7 @@ CFLAGS = -Wall -g -O2 LDFLAGSF= -L $(PREFIX)/lib -Wl,-rpath,$(PREFIX)/lib -l System LDFLAGS = RM = rm -f +LN = ln -f MKDIR = mkdir -p INSTALL = install