0a8bd8
diff -r 91ad7b43317a Makefile.in
0a8bd8
--- a/Makefile.in	Sun Jun 02 20:48:53 2013 +0600
0a8bd8
+++ b/Makefile.in	Wed Jun 19 10:34:27 2013 +0200
0a8bd8
@@ -98,6 +98,11 @@
0a8bd8
 	$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)/pkgconfig
0a8bd8
 	$(INSTALL) -m 644 sdl.pc $(DESTDIR)$(libdir)/pkgconfig
0a8bd8
 install-man:
0a8bd8
+	$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(mandir)/man1
0a8bd8
+	for src in $(srcdir)/docs/man1/*.1; do \
0a8bd8
+	    file=`echo $$src | sed -e 's|^.*/||'`; \
0a8bd8
+	    $(INSTALL) -m 644 $$src $(DESTDIR)$(mandir)/man1/$$file; \
0a8bd8
+	done
0a8bd8
 	$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(mandir)/man3
0a8bd8
 	for src in $(srcdir)/docs/man3/*.3; do \
0a8bd8
 	    file=`echo $$src | sed -e 's|^.*/||'`; \
0a8bd8
@@ -120,6 +125,10 @@
0a8bd8
 	rm -f $(DESTDIR)$(datadir)/aclocal/sdl.m4
0a8bd8
 	rm -f $(DESTDIR)$(libdir)/pkgconfig/sdl.pc
0a8bd8
 uninstall-man:
0a8bd8
+	for src in $(srcdir)/docs/man1/*.1; do \
0a8bd8
+	    file=`echo $$src | sed -e 's|^.*/||'`; \
0a8bd8
+	    rm -f $(DESTDIR)$(mandir)/man1/$$file; \
0a8bd8
+	done
0a8bd8
 	for src in $(srcdir)/docs/man3/*.3; do \
0a8bd8
 	    file=`echo $$src | sed -e 's|^.*/||'`; \
0a8bd8
 	    rm -f $(DESTDIR)$(mandir)/man3/$$file; \
0a8bd8
diff -r 91ad7b43317a docs/man1/sdl-config.1
0a8bd8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
0a8bd8
+++ b/docs/man1/sdl-config.1	Wed Jun 19 10:34:27 2013 +0200
0a8bd8
@@ -0,0 +1,60 @@
0a8bd8
+.TH sdl-config 1 "2013-06-19" "SDL 1.2"
0a8bd8
+.SH NAME
0a8bd8
+sdl-config \- script to get information about the installed version of SDL
0a8bd8
+.SH SYNOPSIS
0a8bd8
+\fBsdl-config
0a8bd8
+[\~--prefix[=\fIDIR\fP]\~]
0a8bd8
+[\~--exec-prefix[=\fIDIR\fP]\~]
0a8bd8
+[\~--version\~] [\~--cflags\~] [\~--libs\~] [\~--static-libs\~]\fR
0a8bd8
+.SH DESCRIPTION
0a8bd8
+.B sdl-config
0a8bd8
+is a tool that is used to configure and determine the compiler and linker
0a8bd8
+flags that should be used to compile and link programs, and libraries, and
0a8bd8
+plugins that use SDL.  It is also used internally by the m4 macros that are
0a8bd8
+included with SDL.
0a8bd8
+.SH OPTIONS
0a8bd8
+.TP
0a8bd8
+.B --cflags
0a8bd8
+Print the compiler flags that are necessary to compile a program or library
0a8bd8
+that uses SDL.
0a8bd8
+.TP
0a8bd8
+.BI --exec-prefix= DIR
0a8bd8
+If specified, use
0a8bd8
+.I DIR
0a8bd8
+instead of the installation exec prefix that SDL was build with when computing
0a8bd8
+the output for the --exec-prefix option. This option must be specified before
0a8bd8
+any of the --cflags, and --libs options.
0a8bd8
+.TP
0a8bd8
+.B --libs
0a8bd8
+Print the linker flags that are necessary to link a program that uses SDL.
0a8bd8
+.TP
0a8bd8
+.BI --prefix= DIR
0a8bd8
+If specified, use DIR instead of the installation prefix that SDL was built
0a8bd8
+with when computing the output for the --prefix, and --exec-prefix options.
0a8bd8
+This option is also used for the exec prefix if --exec-prefix was not
0a8bd8
+specified. This option must be specified before any of the --cflags, and
0a8bd8
+--libs options.
0a8bd8
+.TP
0a8bd8
+.B --static-libs
0a8bd8
+Print the linker flags that are necessary to statically link a program that uses SDL.
0a8bd8
+.TP
0a8bd8
+.B --version
0a8bd8
+Prints the currently installed version of SDL on standard output.
0a8bd8
+.SH EXAMPLES
0a8bd8
+.TP
0a8bd8
+gcc -o main.o $(sdl-config --cflags) main.c
0a8bd8
+is how you might use
0a8bd8
+.B sdl-config
0a8bd8
+to compile a C source file for an executable program.
0a8bd8
+.TP
0a8bd8
+gcc -o my_app $(sdl-config --libs) main.o util.o
0a8bd8
+is how you might use
0a8bd8
+.B sdl-config
0a8bd8
+to link compiled objects into an executable program.
0a8bd8
+.SH AUTHOR
0a8bd8
+The Simple DirectMedia Layer (SDL) library was written by Sam Lantinga.
0a8bd8
+.PP
0a8bd8
+This manual page was written by Branden Robinson, originally for Progeny
0a8bd8
+Linux Systems, Inc., and the Debian Project.
0a8bd8
+.PP
0a8bd8
+This manual page was modified by Petr Pisar to match original SDL distribution.