git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@12 7f0cb862-5218-0410-a997-914c9d46530a
40 lines
900 B
Makefile
40 lines
900 B
Makefile
## Process this file with automake to produce Makefile.im
|
|
|
|
#
|
|
# The library we want to build
|
|
#
|
|
lib_LTLIBRARIES = libfreeglut-1.3.la
|
|
|
|
#
|
|
# Those source files build the freeglut library
|
|
#
|
|
libfreeglut_1_3_la_SOURCES = freeglut_callbacks.c \
|
|
freeglut_cursor.c \
|
|
freeglut_display.c \
|
|
freeglut_font.c \
|
|
freeglut_font_data.c \
|
|
freeglut_gamemode.c \
|
|
freeglut_geometry.c \
|
|
freeglut_init.c \
|
|
freeglut_joystick.c \
|
|
freeglut_main.c \
|
|
freeglut_menu.c \
|
|
freeglut_misc.c \
|
|
freeglut_overlay.c \
|
|
freeglut_state.c \
|
|
freeglut_structure.c \
|
|
freeglut_teapot.c \
|
|
freeglut_videoresize.c \
|
|
freeglut_window.c
|
|
|
|
|
|
#
|
|
# Additional linker flags
|
|
#
|
|
libfreeglut_1_3_la_LIBADD = $(LIBM) $(X_LIBS) -lGL -lGLU -lXext -lX11 -lXxf86vm
|
|
libfreeglut_1_3_la_LDFLAGS = -version-info 0:0:0
|
|
|
|
#
|
|
# End of file
|
|
#
|