Added --disable-replace-glut option to autoconf configure.
[freeglut] / src / Makefile.am
1 ## Process this file with automake to produce Makefile.im
2
3 #
4 # The library we want to build
5 #
6 lib_LTLIBRARIES = lib@LIBRARY@.la
7
8 noinst_HEADERS = freeglut_internal.h
9 #
10 # Those source files build the freeglut library
11 #
12 lib@LIBRARY@_la_SOURCES = freeglut_callbacks.c \
13                          freeglut_cursor.c \
14                          freeglut_display.c \
15                          freeglut_ext.c \
16                          freeglut_font.c \
17                          freeglut_glutfont_definitions.c \
18                          freeglut_font_data.c \
19                          freeglut_stroke_roman.c \
20                          freeglut_stroke_mono_roman.c \
21                          freeglut_gamemode.c \
22                          freeglut_geometry.c \
23                          freeglut_init.c \
24                          freeglut_joystick.c \
25                          freeglut_main.c \
26                          freeglut_menu.c \
27                          freeglut_misc.c \
28                          freeglut_overlay.c \
29                          freeglut_state.c \
30                          freeglut_structure.c \
31                          freeglut_teapot.c \
32                          freeglut_videoresize.c \
33                          freeglut_window.c
34
35 #
36 # Additional linker flags
37 #        
38 lib@LIBRARY@_la_LIBADD = $(LIBM) $(X_LIBS) -lGL -lGLU -lXext -lX11 $(LIBXXF86VM)
39 lib@LIBRARY@_la_LDFLAGS = -version-info 11:0:8
40 lib@LIBRARY@_la_CFLAGS = $(X_CFLAGS)
41
42 #
43 # End of file
44 #