diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile.in (renamed from Makefile) | 55 |
1 files changed, 35 insertions, 20 deletions
@@ -6,31 +6,44 @@ # without any warranty. -### See INSTALL for information on how to install this package. ### +### This file will be stored to Makefile once you have run ./configure. ### +### See INSTALL for information on how to install this package. ### -# Prototype directory paths. You can change them! -include mk/path.mk + +# List of translations to install. +LOCALES = sv + +# List of man page translations to install. +MAN_LOCALES = sv + +# Can change these variables with ./configure in the same why you +# would configure them when running make. +##### What is below this line is configurable, but is seldom useful. ##### + + +# Additional options for compiling DVI, PDF, and PostScript manuals. +TEXINFO_FLAGS = + # The name of the command as it should be installed. COMMAND = scrotty + # The name of the package as it should be installed. PKGNAME = scrotty -# Additional options for compiling DVI, PDF, and PostScript manuals. -TEXINFO_FLAGS = -# List of translations. -LOCALES = sv -# Ucomment to remove internationalisation support. -#WITHOUT_GETTEXT = yes +##### Nothing interesting below this. ##### -# List of man page translations. -MAN_LOCALES = sv +# In case you want add some configurations. Primarily +# intended for maintainers. Perhaps add GPG_KEY here. +# Of course, you can declare everthing with ./configure, +# but with this you are less likely to forget it. +-include .make-configurations # YOU, AS A USER, SHOULD NOT CHANGE THESE VARIABLES. {{ @@ -48,7 +61,7 @@ _HEADER_DIRLEVELS = 0 _CPPFLAGS = -D'PACKAGE="$(PKGNAME)"' -D'PROGRAM_VERSION="$(_VERSION)"' # Used by mk/i18n.mk -_SRC = $(foreach B,$(_BIN),$(_OBJ_$(B))) +_SRC = $(foreach B,$(_BIN),$(_OBJ_$(B)).c) _PROJECT_FULL = scrotty _COPYRIGHT_HOLDER = Mattias Andrée (maandree@member.fsf.org) @@ -66,16 +79,18 @@ _MAN_sv_1 = scrotty # Used by mk/copy.mk _COPYING = COPYING -_LICENSE = LICENSE -# }} +# Used by mk/dist.mk +_EVERYTHING_INFO = scrotty titlepage-data content hardcopy-copying \ + appx/fdl appx/free-software-needs-free-documentation appx/gpl \ + chap/invoking chap/overview chap/strftime \ + reusable/macros reusable/paper reusable/titlepage +_EVERYTHING = $(foreach F,$(_EVERYTHING_INFO),doc/info/$(F).texinfo) \ + $(__EVERYTHING_ALL_COMMON) DEPENDENCIES INSTALL NEWS $(__todo) doc/concept +# }} -# All of the make rules. -include mk/all.mk -# In case you want add some configurations. -# Primarily intended for maintainers. -# Perhaps add GPG_KEY here. --include .make-configurations +# All of the make rules and the configurations. +include $(v)mk/all.mk |