2011-01-28 16:11:45 +00:00
|
|
|
include Makefile.FLTK
|
2010-06-06 20:28:37 +00:00
|
|
|
|
2011-01-28 16:11:45 +00:00
|
|
|
RM = rm -f
|
|
|
|
SHELL = /bin/sh
|
|
|
|
.SILENT:
|
|
|
|
|
|
|
|
# Executables
|
2014-05-23 16:47:21 +00:00
|
|
|
ALL = clipboard$(EXEEXT) \
|
2017-08-05 16:44:49 +00:00
|
|
|
draggable-group$(EXEEXT) \
|
2015-04-21 12:44:46 +00:00
|
|
|
fltk-versions$(EXEEXT) \
|
2014-05-23 16:47:21 +00:00
|
|
|
howto-add_fd-and-popen$(EXEEXT) \
|
2013-03-23 18:40:53 +00:00
|
|
|
howto-browser-with-icons$(EXEEXT) \
|
2011-01-10 22:25:59 +00:00
|
|
|
howto-drag-and-drop$(EXEEXT) \
|
2017-09-11 00:50:06 +00:00
|
|
|
howto-menu-with-images$(EXEEXT) \
|
2010-10-23 13:19:37 +00:00
|
|
|
howto-parse-args$(EXEEXT) \
|
2017-10-30 03:43:42 +00:00
|
|
|
howto-simple-svg$(EXEEXT) \
|
2010-10-26 02:32:02 +00:00
|
|
|
howto-text-over-image-button$(EXEEXT) \
|
2010-12-09 00:05:24 +00:00
|
|
|
menubar-add$(EXEEXT) \
|
2017-07-17 01:13:28 +00:00
|
|
|
nativefilechooser-simple$(EXEEXT) \
|
2010-12-21 23:04:16 +00:00
|
|
|
nativefilechooser-simple-app$(EXEEXT) \
|
2012-02-29 05:37:30 +00:00
|
|
|
progress-simple$(EXEEXT) \
|
2014-08-28 09:13:27 +00:00
|
|
|
shapedwindow$(EXEEXT) \
|
2010-10-26 12:21:17 +00:00
|
|
|
table-as-container$(EXEEXT) \
|
2010-11-30 04:39:30 +00:00
|
|
|
table-simple$(EXEEXT) \
|
2010-11-30 17:02:11 +00:00
|
|
|
table-sort$(EXEEXT) \
|
2010-12-10 07:49:22 +00:00
|
|
|
table-spreadsheet$(EXEEXT) \
|
2010-12-10 18:28:07 +00:00
|
|
|
table-spreadsheet-with-keyboard-nav$(EXEEXT) \
|
2012-04-14 19:45:50 +00:00
|
|
|
table-with-keynav$(EXEEXT) \
|
2010-06-06 21:24:06 +00:00
|
|
|
tabs-simple$(EXEEXT) \
|
2017-10-17 00:28:56 +00:00
|
|
|
simple-terminal$(EXEEXT) \
|
2010-12-10 05:27:20 +00:00
|
|
|
textdisplay-with-colors$(EXEEXT) \
|
2010-12-09 20:26:00 +00:00
|
|
|
texteditor-simple$(EXEEXT) \
|
2010-06-06 21:43:59 +00:00
|
|
|
tree-simple$(EXEEXT) \
|
2012-04-18 15:20:20 +00:00
|
|
|
tree-as-container$(EXEEXT) \
|
2013-11-10 04:33:44 +00:00
|
|
|
tree-custom-draw-items$(EXEEXT) \
|
2013-12-16 10:26:44 +00:00
|
|
|
tree-custom-sort$(EXEEXT) \
|
2012-04-27 02:11:37 +00:00
|
|
|
tree-of-tables$(EXEEXT) \
|
2010-06-06 21:43:59 +00:00
|
|
|
wizard-simple$(EXEEXT)
|
2010-06-06 20:28:37 +00:00
|
|
|
|
|
|
|
# default target -- build everything
|
2011-01-05 22:28:39 +00:00
|
|
|
default all: $(ALL)
|
2010-06-06 20:28:37 +00:00
|
|
|
|
|
|
|
# clean everything
|
|
|
|
clean:
|
|
|
|
$(RM) $(ALL)
|
|
|
|
$(RM) *.o
|
|
|
|
$(RM) core
|