Remove build.h and version.tex from versioning, they're autogenerated Make 'Makefile' the dummy makefile to instruct user to launch configure if no GNUmakefile is found Make GNUmakefile the generated makefile and exclude it from the versioning Update .gitignore accordingly
27 lines
495 B
Makefile
27 lines
495 B
Makefile
.PHONY : all show locale html images pack-images
|
|
.PHONY : install uninstall clean distclean arch www www-images srcdist bindist
|
|
|
|
|
|
all:
|
|
@echo
|
|
@echo "Please run \`bash configure' first."
|
|
@echo "Note that dvdisaster requires GNU make to build."
|
|
@echo "Under non-Linux systems, it might be known as \`gmake'."
|
|
@echo
|
|
|
|
show: all
|
|
locale: all
|
|
html: all
|
|
images: all
|
|
pack-images: all
|
|
install: all
|
|
uninstall: all
|
|
clean: all
|
|
distclean: all
|
|
arch: all
|
|
www: all
|
|
www-images: all
|
|
srcdist: all
|
|
bindist: all
|
|
|