mirror of https://github.com/fltk/fltk.git
FLTK - Fast Light Tool Kit - https://github.com/fltk/fltk - cross platform GUI development
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
354 B
19 lines
354 B
include ../makeinclude |
|
|
|
ALL = tabs-simple$(EXEEXT) \ |
|
tree-simple$(EXEEXT) |
|
|
|
# default target -- build everything |
|
default: $(ALL) |
|
|
|
tabs-simple$(EXEEXT): tabs-simple.cxx |
|
fltk-config --compile tabs-simple.cxx |
|
|
|
tree-simple$(EXEEXT): tree-simple.cxx |
|
fltk-config --compile tree-simple.cxx |
|
|
|
# clean everything |
|
clean: |
|
$(RM) $(ALL) |
|
$(RM) *.o |
|
$(RM) core
|
|
|