summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2016-01-27 22:59:58 +0000
committerMatthias Melcher <fltk@matthiasm.com>2016-01-27 22:59:58 +0000
commit411e73fe242f66b26e98d8689ceb6f9b686c19f9 (patch)
tree0483e3fc99e1d48fdefc6d175a92b8daa1cc2357 /src/Makefile
parent780f43a4f14f56678c503fa279517c418b697877 (diff)
Messed up Makefiles in order to compile on OS X with carved out Graphics Driver
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11066 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 57a5bae14..624af5929 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -215,10 +215,23 @@ UTF8CFILES = \
xutf8/utf8Utils.c \
xutf8/utf8Wrap.c
+QUARTZCPPFILES = \
+ drivers/Quartz/Fl_Quartz_Graphics_Driver.cxx \
+ drivers/Quartz/Fl_Quartz_Graphics_Driver_color.cxx \
+ drivers/Quartz/Fl_Quartz_Graphics_Driver_rect.cxx \
+ drivers/Quartz/Fl_Quartz_Graphics_Driver_font.cxx \
+ drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx \
+ drivers/Quartz/Fl_Quartz_Graphics_Driver_image.cxx \
+ drivers/Quartz/Fl_Quartz_Printer_Graphics_Driver.cxx \
+ drivers/Quartz/Fl_Quartz_Graphics_Driver_arci.cxx \
+ drivers/Quartz/Fl_Quartz_Graphics_Driver_line_style.cxx
+
+
################################################################
FLTKFLAGS = -DFL_LIBRARY
include ../makeinclude
+CPPFILES += $(shell if test $(USEMMFILES) = Yes; then echo $(QUARTZCPPFILES); fi)
MMFILES = $(shell if test $(USEMMFILES) = Yes; then echo $(OBJCPPFILES); fi)
OBJECTS = $(MMFILES:.mm=.o) $(CPPFILES:.cxx=.o) $(CFILES:.c=.o) $(UTF8CFILES:.c=.o)