mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Add Makefile rules for regenerating Makefile, configure script, etc. when needed
darcs-hash:20060402111525-ac50b-533e15f7ab5d63c2f8258b5a5ae8adc5bafd9221.gz
This commit is contained in:
parent
01af64cf1f
commit
ef3430f669
1 changed files with 8 additions and 0 deletions
|
@ -197,6 +197,13 @@ all: $(PROGRAMS) user_doc
|
||||||
@echo Use \'make install\' to install fish.
|
@echo Use \'make install\' to install fish.
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
|
|
||||||
|
configure: configure.ac
|
||||||
|
autoconf
|
||||||
|
./config.status --recheck
|
||||||
|
|
||||||
|
Makefile: Makefile.in configure
|
||||||
|
./config.status
|
||||||
|
|
||||||
debug:
|
debug:
|
||||||
make fish CFLAGS="@CFLAGS@ -O0 -Wno-unused -Werror -g"
|
make fish CFLAGS="@CFLAGS@ -O0 -Wno-unused -Werror -g"
|
||||||
.PHONY: debug
|
.PHONY: debug
|
||||||
|
@ -504,6 +511,7 @@ key_reader: key_reader.o input_common.o $(CORE_OBJS) env_universal.o env_univers
|
||||||
#
|
#
|
||||||
depend:
|
depend:
|
||||||
makedepend -fMakefile.in -Y *.c
|
makedepend -fMakefile.in -Y *.c
|
||||||
|
./config.status
|
||||||
.PHONY: depend
|
.PHONY: depend
|
||||||
|
|
||||||
# Copy all the source files into a new directory and use tar to create
|
# Copy all the source files into a new directory and use tar to create
|
||||||
|
|
Loading…
Reference in a new issue