diff options
| author | Mattias Andrée <maandree@kth.se> | 2019-10-06 09:36:23 +0200 | 
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2019-10-06 09:36:23 +0200 | 
| commit | 1be48c64b4e5df9e9b1ad69b3bb30b867b0abf9e (patch) | |
| tree | 697f6c2fb5f3f91ab64e6ed32c45e483bf31e442 /INSTALL | |
| parent | Add golden hour and blue hour (diff) | |
| download | libred-1be48c64b4e5df9e9b1ad69b3bb30b867b0abf9e.tar.gz libred-1be48c64b4e5df9e9b1ad69b3bb30b867b0abf9e.tar.bz2 libred-1be48c64b4e5df9e9b1ad69b3bb30b867b0abf9e.tar.xz | |
Clean up
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
| -rw-r--r-- | INSTALL | 81 | 
1 files changed, 0 insertions, 81 deletions
| diff --git a/INSTALL b/INSTALL deleted file mode 100644 index 763b40a..0000000 --- a/INSTALL +++ /dev/null @@ -1,81 +0,0 @@ -Type './configure --help' for configuration options. The normal settings for a -GNU package should work. If not, please make a bug report. - -	On a common GNU/Linux distribution the following should -	be sufficient for most users: - -		./configure --prefix=/usr -		make -		make install DESTDIR="somewhere you want the files for now" -		# Now let the package manager put the files in place... - -	Or for an unstaged install: - -		./configure --prefix=/usr -		make -		sudo make install - -By default any applicable pre-install, post-install, pre-uninstall, and -post-install commands is run. This suppress these, run 'make' with 'N=true' -or 'N=:'. IF you want to know which these commands are, you can use the -methods specificed in the GNU Coding Standards. Another method is found in -mk/README. However, for this packages, these will be: - -	infodir="usr/local/share/info" ## Assuming default prefix. -	 -	post_install () { -	  install-info -- "${infodir}/libred.info" "${infodir}/dir" -	} -	 -	pre_uninstall () { -	  install-info --delete -- "${infodir}/libred.info" "${infodir}/dir" -	} - - -──────────────────────────────────────────────────────────────────────────────── -CUSTOMISED COMPILATION -──────────────────────────────────────────────────────────────────────────────── - -The makefile is configured to compile the C code with -O2 -g, you can -change this by setting OPTIMISE, or with CFLAGS and LDFLAGS if you want -to change all optional flags compiling and linking flags: - -	./configure OPTIMISE="-Og -g" - - -──────────────────────────────────────────────────────────────────────────────── -CUSTOMISED INSTALLATION -──────────────────────────────────────────────────────────────────────────────── - -If you want to install absolutely everything, you can -instead use the commands below: - -	make everything -	make install-everything DESTDIR="pkg" - -Or if you only want to absolute basics: - -	make base -	make install-base DESTDIR="pkg" - -You can select freely what parts of the package to install and not -to install. This rules are available: - -┌─────────────┬─────────────────────┬────────────────────────────────────────────┐ -│ COMPILATION │ INSTALLATION        │ DESCRIPTION                                │ -├─────────────┼─────────────────────┼────────────────────────────────────────────┤ -│ base        │ install-base        │ Install the basics:                        │ -│   lib       │   install-lib       │   Install the libred library.              │ -│   data      │   install-data      │   Install the resources.                   │ -│             │   install-librarian │   Install the librarian file.              │ -│             │   install-pc        │   Install the pkg-config file.             │ -│             │   install-copyright │   Install the Expat License.               │ -│ doc         │ install-doc         │ Include all manuals:                       │ -│   info      │   install-info      │   Include info manual. (Texinfo)           │ -│   dvi       │   install-dvi       │   Include DVI manual. (Texinfo)            │ -│   pdf       │   install-pdf       │   Include PDF manual. (Texinfo)            │ -│   ps        │   install-ps        │   Include PostScript manual. (Texinfo)     │ -│   html      │   install-html      │   Include multifile HTML manual. (Texinfo) │ -│             │   install-man       │   Include man pages.                       │ -└─────────────┴─────────────────────┴────────────────────────────────────────────┘ - | 
