5162d3bc8d
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7629 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
18 lines
316 B
Makefile
18 lines
316 B
Makefile
include ../makeinclude
|
|
|
|
ALL = howto-add_fd-and-popen$(EXEEXT) \
|
|
tabs-simple$(EXEEXT) \
|
|
tree-simple$(EXEEXT)
|
|
|
|
# default target -- build everything
|
|
default: $(ALL)
|
|
|
|
tabs-simple$(EXEEXT): tabs-simple.cxx
|
|
fltk-config --compile tabs-simple.cxx
|
|
|
|
# clean everything
|
|
clean:
|
|
$(RM) $(ALL)
|
|
$(RM) *.o
|
|
$(RM) core
|