ObjFW  Check-in [ceb38ca473]

Overview
Comment:Add manpage for objfw-embed
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: ceb38ca473c8f9a3194917ef6b60d1bc96cde77545836bdc3c0dfa4580ef5f15
User & Date: js on 2024-08-31 20:43:53
Other Links: manifest | tags
Context
2024-08-31
20:45
objfw-config.1: Improve style check-in: d473ceacbe user: js tags: trunk
20:43
Add manpage for objfw-embed check-in: ceb38ca473 user: js tags: trunk
20:36
Add license to manpages check-in: 476072fb85 user: js tags: trunk
Changes

Modified utils/Makefile from [2d2556fd18] to [32e3c3e0ae].

1
2
3
4
5
6
7
8
9
10

11
12
13
14
15
16
17
include ../extra.mk

SUBDIRS += ${OBJFW_NEW}		\
	   ${OFARC}		\
	   ${OFDNS}		\
	   ${OFHASH}		\
	   ${OFHTTP}

MAN = objfw-compile.1	\
      objfw-config.1


include ../buildsys.mk

DISTCLEAN = objfw-config

install-extra: objfw-config objfw-compile objfw-embed
	for i in objfw-config objfw-compile objfw-embed; do \









|
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
include ../extra.mk

SUBDIRS += ${OBJFW_NEW}		\
	   ${OFARC}		\
	   ${OFDNS}		\
	   ${OFHASH}		\
	   ${OFHTTP}

MAN = objfw-compile.1	\
      objfw-config.1	\
      objfw-embed.1

include ../buildsys.mk

DISTCLEAN = objfw-config

install-extra: objfw-config objfw-compile objfw-embed
	for i in objfw-config objfw-compile objfw-embed; do \

Added utils/objfw-embed.1 version [432d4669c2].









































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
.\"
.\" Copyright (c) 2008-2024 Jonathan Schleifer <js@nil.im>
.\"
.\" All rights reserved.
.\"
.\" This program is free software: you can redistribute it and/or modify it
.\" under the terms of the GNU Lesser General Public License version 3.0 only,
.\" as published by the Free Software Foundation.
.\"
.\" This program is distributed in the hope that it will be useful, but WITHOUT
.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
.\" FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
.\" version 3.0 for more details.
.\"
.\" You should have received a copy of the GNU Lesser General Public License
.\" version 3.0 along with this program. If not, see
.\" <https://www.gnu.org/licenses/>.
.\"
.TH OBJFW-EMBED 1
.SH NAME
objfw-embed - create source code to embed a file into a program
.SH SYNOPSIS
.B objfw-embed
.I source_file
.I filename
.I output
.SH DESCRIPTION
.B objfw-embed
is a program which creates source code to embed a file into a program, which
can then be accessed using the \fBembedded:\fR IRI scheme in ObjFW.
.SH EXAMPLES
Create the source file \fBlogo.png.m\fR for the file \fBassets/logo.png\fR,
which will be registered under the path \fBlogo.png\fR so that it can be
accessed under the IRI \fBembedded:logo.png\fR:
.PP
	objfw-embed assets/logo.png logo.png logo.png.m