fltk/examples/Makefile

61 lines
1.7 KiB
Makefile
Raw Normal View History

include Makefile.FLTK
RM = rm -f
SHELL = /bin/sh
.SILENT:
# Executables
2019-07-26 23:07:36 +03:00
ALL = browser-simple$(EXEEXT) \
cairo-draw-x$(EXEEXT) \
2021-03-19 05:41:27 +03:00
chart-simple$(EXEEXT) \
draggable-group$(EXEEXT) \
howto-add_fd-and-popen$(EXEEXT) \
howto-browser-with-icons$(EXEEXT) \
howto-drag-and-drop$(EXEEXT) \
2019-08-22 22:15:41 +03:00
howto-draw-an-x$(EXEEXT) \
howto-menu-with-images$(EXEEXT) \
howto-parse-args$(EXEEXT) \
howto-remap-numpad-keyboard-keys$(EXEEXT) \
howto-simple-svg$(EXEEXT) \
howto-text-over-image-button$(EXEEXT) \
menubar-add$(EXEEXT) \
nativefilechooser-simple-app$(EXEEXT) \
nativefilechooser-simple$(EXEEXT) \
progress-simple$(EXEEXT) \
shapedwindow$(EXEEXT) \
simple-terminal$(EXEEXT) \
table-as-container$(EXEEXT) \
table-simple$(EXEEXT) \
table-sort$(EXEEXT) \
table-spreadsheet$(EXEEXT) \
table-spreadsheet-with-keyboard-nav$(EXEEXT) \
table-with-keynav$(EXEEXT) \
table-with-right-column-stretch-fit$(EXEEXT) \
tabs-simple$(EXEEXT) \
textdisplay-with-colors$(EXEEXT) \
texteditor-simple$(EXEEXT) \
texteditor-with-dynamic-colors$(EXEEXT) \
tree-as-container$(EXEEXT) \
tree-custom-draw-items$(EXEEXT) \
tree-custom-sort$(EXEEXT) \
tree-of-tables$(EXEEXT) \
tree-simple$(EXEEXT) \
wizard-simple$(EXEEXT)
# default target -- build everything
default all: $(ALL)
# Special rules for building cairo app
cairo-draw-x.o: cairo-draw-x.cxx
@echo "*** Compile $<..."
$(CXX) -I.. $(CXXFLAGS_CAIRO) -c $< -o $@
cairo-draw-x$(EXEEXT): cairo-draw-x.o
@echo "*** Link $<..."
$(CXX) $< $(LINKFLTK) $(LINKFLTK_CAIRO) -o $@
# clean everything
clean:
$(RM) $(ALL)
$(RM) *.o
$(RM) core