automake: Create .stamp directory for reasons
Might rework in the future to get rid of silly hacky thing...
This commit is contained in:
parent
d983eb6ee9
commit
0e079e8ff0
4 changed files with 22 additions and 12 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -2,6 +2,7 @@
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
# Autotools
|
# Autotools
|
||||||
|
.stamp
|
||||||
Makefile
|
Makefile
|
||||||
configure
|
configure
|
||||||
*~
|
*~
|
||||||
|
|
|
||||||
11
Makefile.in
11
Makefile.in
|
|
@ -200,16 +200,19 @@ dist ::
|
||||||
Makefile: config.status
|
Makefile: config.status
|
||||||
./config.status && touch .stamp/config.h
|
./config.status && touch .stamp/config.h
|
||||||
|
|
||||||
.stamp/config.h: config.status
|
.stamp:
|
||||||
|
mkdir $@
|
||||||
|
|
||||||
|
.stamp/config.h: .stamp config.status
|
||||||
./config.status && touch .stamp/config.h
|
./config.status && touch .stamp/config.h
|
||||||
|
|
||||||
config.status: .stamp/configure .stamp/config.h.in Makefile.in
|
config.status: .stamp .stamp/configure .stamp/config.h.in Makefile.in
|
||||||
./config.status --recheck
|
./config.status --recheck
|
||||||
|
|
||||||
.stamp/configure: configure.ac
|
.stamp/configure: .stamp configure.ac
|
||||||
autoconf && touch .stamp/configure
|
autoconf && touch .stamp/configure
|
||||||
|
|
||||||
.stamp/config.h.in: configure.ac acconfig.h
|
.stamp/config.h.in: .stamp configure.ac acconfig.h
|
||||||
autoheader && touch .stamp/config.h.in
|
autoheader && touch .stamp/config.h.in
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
|
||||||
|
|
@ -98,16 +98,19 @@ maintainer-clean :: distclean
|
||||||
Makefile: config.status
|
Makefile: config.status
|
||||||
./config.status && touch .stamp/config.h
|
./config.status && touch .stamp/config.h
|
||||||
|
|
||||||
.stamp/config.h: config.status
|
.stamp:
|
||||||
|
mkdir $@
|
||||||
|
|
||||||
|
.stamp/config.h: .stamp config.status
|
||||||
./config.status && touch .stamp/config.h
|
./config.status && touch .stamp/config.h
|
||||||
|
|
||||||
config.status: .stamp/configure .stamp/config.h.in Makefile.in
|
config.status: .stamp .stamp/configure .stamp/config.h.in Makefile.in
|
||||||
./config.status --recheck
|
./config.status --recheck
|
||||||
|
|
||||||
.stamp/configure: configure.ac
|
.stamp/configure: .stamp configure.ac
|
||||||
autoconf && touch .stamp/configure
|
autoconf && touch .stamp/configure
|
||||||
|
|
||||||
.stamp/config.h.in: configure.ac acconfig.h
|
.stamp/config.h.in: .stamp configure.ac acconfig.h
|
||||||
autoheader && touch .stamp/config.h.in
|
autoheader && touch .stamp/config.h.in
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
|
||||||
|
|
@ -95,16 +95,19 @@ maintainer-clean :: distclean
|
||||||
Makefile: config.status
|
Makefile: config.status
|
||||||
./config.status && touch .stamp/config.h
|
./config.status && touch .stamp/config.h
|
||||||
|
|
||||||
.stamp/config.h: config.status
|
.stamp:
|
||||||
|
mkdir $@
|
||||||
|
|
||||||
|
.stamp/config.h: .stamp config.status
|
||||||
./config.status && touch .stamp/config.h
|
./config.status && touch .stamp/config.h
|
||||||
|
|
||||||
config.status: .stamp/configure .stamp/config.h.in Makefile.in
|
config.status: .stamp .stamp/configure .stamp/config.h.in Makefile.in
|
||||||
./config.status --recheck
|
./config.status --recheck
|
||||||
|
|
||||||
.stamp/configure: configure.ac
|
.stamp/configure: .stamp configure.ac
|
||||||
autoconf && touch .stamp/configure
|
autoconf && touch .stamp/configure
|
||||||
|
|
||||||
.stamp/config.h.in: configure.ac acconfig.h
|
.stamp/config.h.in: .stamp configure.ac acconfig.h
|
||||||
autoheader && touch .stamp/config.h.in
|
autoheader && touch .stamp/config.h.in
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue