Ver código fonte

* Move build stamp to build/

Bryan Drewery 14 anos atrás
pai
commit
630f5e96f9
2 arquivos alterados com 8 adições e 8 exclusões
  1. 1 1
      .gitignore
  2. 7 7
      Makefile.in

+ 1 - 1
.gitignore

@@ -5,7 +5,7 @@
 /src/config.h
 /build/config.log
 /build/config.status
-/stamp.*
+/build/stamp.*
 /build/autotools/src
 /*.tgz
 /leaf

+ 7 - 7
Makefile.in

@@ -98,7 +98,7 @@ clean:  cleanutils
 	+@cd src/crypto && $(MAKE) clean
 	+@cd src/mod && $(MAKE) distclean
 	-+@cd lib && $(MAKE) clean
-	@rm -f $(BINEXEC) stamp.* *~ src/*~ configure.temp .mangled
+	@rm -f $(BINEXEC) build/stamp.* *~ src/*~ configure.temp .mangled
 	@rm -f src/help.h src/response.h src/responses.h utctime@EXEEXT@ ts@EXEEXT@
 
 distclean: clean
@@ -212,25 +212,25 @@ check:
 .NOTPARALLEL: checkclean.static checkclean.dynamic checkclean.debug
 
 checkclean.static:
-	@(if test -f stamp.dynamic -o -f stamp.debug; then \
+	@(if test -f build/stamp.dynamic -o -f build/stamp.debug; then \
 	echo "[*] Cleaning up alternate build"; \
 	$(MAKE) MAKEFLAGS=-s clean; \
 	fi)
-	@touch stamp.static
+	@touch build/stamp.static
 
 checkclean.dynamic:
-	@(if test -f stamp.static -o -f stamp.debug; then \
+	@(if test -f build/stamp.static -o -f build/stamp.debug; then \
 	echo "[*] Cleaning up alternate build"; \
 	$(MAKE) MAKEFLAGS=-s clean; \
 	fi)
-	@touch stamp.dynamic
+	@touch build/stamp.dynamic
 
 checkclean.debug:
-	@(if test -f stamp.static -o -f stamp.dynamic; then \
+	@(if test -f build/stamp.static -o -f build/stamp.dynamic; then \
 	echo "[*] Cleaning up alternate build"; \
 	$(MAKE) MAKEFLAGS=-s clean; \
 	fi)
-	@touch stamp.debug
+	@touch build/stamp.debug
 
 lib:
 	+@cd lib && $(MAKE)