3f41385ebc
as an FLTK example 'table-as-container.cxx'. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7754 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
20 lines
426 B
Makefile
20 lines
426 B
Makefile
include ../makeinclude
|
|
|
|
ALL = howto-add_fd-and-popen$(EXEEXT) \
|
|
howto-parse-args$(EXEEXT) \
|
|
howto-text-over-image-button$(EXEEXT) \
|
|
table-as-container$(EXEEXT) \
|
|
table-with-keyboard-nav$(EXEEXT) \
|
|
tabs-simple$(EXEEXT) \
|
|
tree-simple$(EXEEXT) \
|
|
wizard-simple$(EXEEXT)
|
|
|
|
# default target -- build everything
|
|
default: $(ALL)
|
|
|
|
# clean everything
|
|
clean:
|
|
$(RM) $(ALL)
|
|
$(RM) *.o
|
|
$(RM) core
|