changes for make dist

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@134 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
andi75 2003-07-12 19:34:28 +00:00
parent 4899d7349e
commit c44a5c0a48
12 changed files with 39 additions and 15 deletions

6
.gitattributes vendored
View File

@ -10,6 +10,7 @@ freeglut/freeglut/TODO svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/acconfig.h svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/autogen.sh svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/configure.in svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/doc/Makefile.am svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/doc/download.html svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/doc/freeglut.html svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/doc/freeglut_logo.png -text
@ -62,14 +63,19 @@ freeglut/freeglut/include/GL/glut.h svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/include/Makefile.am svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/install-sh svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/mkinstalldirs svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/Makefile.am svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/Fractals/Fractals.dsp svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/Fractals/Makefile.am svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/Fractals/fractals.c svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/Fractals/fractals.dat svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/Fractals_random/Fractals_random.dsp svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/Fractals_random/Makefile.am svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/Fractals_random/fractals.dat svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/Fractals_random/fractals_random.c svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/Lorenz/Makefile.am svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/Lorenz/lorenz.c svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/Lorenz/lorenz.dsp svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/Makefile.am svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/One/Makefile.am svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/One/one.c svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/progs/demos/One/one.dsp svn_keywords=Author+Date+Id+Revision

View File

@ -1,7 +1,11 @@
## Process this file with automake to produce makefile.im
SUBDIRS = src include
SUBDIRS = src include progs doc
AUTOMAKE_OPTIONS = gnu
EXTRA_DIST = AUTHORS COPYING ChangeLog INSTALL NEWS README TODO freeglut.lsm \
freeglut.kdevprj
EXTRA_DIST = \
AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \
freeglut.lsm autogen.sh \
freeglut.kdevprj freeglut.kdevelop \
freeglut.dsp freeglut.dsw

View File

@ -27,4 +27,16 @@ dnl Checks for library functions.
AC_CHECK_LIBM
AC_SUBST(LIBM)
AC_OUTPUT(Makefile src/Makefile include/Makefile include/GL/Makefile)
AC_OUTPUT(\
Makefile \
doc/Makefile \
progs/Makefile \
progs/demos/Makefile \
progs/demos/Fractals/Makefile \
progs/demos/Fractals_random/Makefile \
progs/demos/Lorenz/Makefile \
progs/demos/One/Makefile \
src/Makefile \
include/Makefile \
include/GL/Makefile \
)

View File

@ -0,0 +1,4 @@
EXTRA_DIST = \
download.html freeglut.html freeglut_logo.png \
freeglut_user_interface.html index.html \
ogl_sm.png progress.html structure.html \

View File

@ -1,7 +1,5 @@
## Process this file with automake to produce Makefile.in
GLincludedir = $(includedir)/GL
EXTRA_DIST = freeglut.h freeglut_internal.h
GLinclude_HEADERS = freeglut.h freeglut_ext.h glut.h
libfreeglutincludedir = $(includedir)/GL
libfreeglutinclude_HEADERS = freeglut.h freeglut_ext.h glut.h

View File

@ -0,0 +1 @@
SUBDIRS = demos

View File

@ -0,0 +1 @@
EXTRA_DIST = Fractals.dsp fractals.c fractals.dat

View File

@ -0,0 +1 @@
EXTRA_DIST = Fractals_random.dsp fractals.dat fractals_random.c

View File

@ -0,0 +1 @@
EXTRA_DIST = lorenz.c lorenz.dsp

View File

@ -0,0 +1 @@
SUBDIRS = Fractals Fractals_random Lorenz One

View File

@ -1,6 +1 @@
## Process this file with automake to produce Makefile.im
bin_PROGRAMS = one
one_SOURCES = one.c
one_LDFLAGS = -export-dynamic -dlpreopen ../src/libfreeglut-2.0.la
EXTRA_DIST = one.c one.dsp

View File

@ -5,6 +5,7 @@
#
lib_LTLIBRARIES = libfreeglut.la
noinst_HEADERS = freeglut_internal.h
#
# Those source files build the freeglut library
#
@ -30,7 +31,6 @@ libfreeglut_la_SOURCES = freeglut_callbacks.c \
freeglut_videoresize.c \
freeglut_window.c
#
# Additional linker flags
#