]> git.mxchange.org Git - simgear.git/blob - simgear/screen/Makefile.am
Add our own function to check whether a certain OpenGL extension is supported
[simgear.git] / simgear / screen / Makefile.am
1 includedir = @includedir@/screen
2
3 lib_LIBRARIES = libsgscreen.a
4
5 EXTRA_DIST = jpgfactory.cxx jpgfactory.hxx
6
7 if ENABLE_JPEG_SERVER
8 IMAGE_SERVER_INCL = jpgfactory.hxx
9 IMAGE_SERVER_SRCS = jpgfactory.cxx
10 else
11 IMAGE_SERVER_INCL = 
12 IMAGE_SERVER_SRCS = 
13 endif
14
15 noinst_HEADERS = colours.h
16
17 include_HEADERS = \
18         colors.hxx \
19         texture.hxx \
20         $(IMAGE_SERVER_INCL) \
21         screen-dump.hxx \
22         extensions.hxx \
23         tr.h
24
25 libsgscreen_a_SOURCES = \
26         texture.cxx \
27         GLBitmaps.cxx GLBitmaps.h \
28         $(IMAGE_SERVER_SRCS) \
29         screen-dump.cxx \
30         tr.cxx \
31         extensions.cxx \
32         win32-printer.h
33
34 INCLUDES = -I$(top_srcdir)