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.

34 lines
777B

  1. include Makefile.FLTK
  2. RM = rm -f
  3. SHELL = /bin/sh
  4. .SILENT:
  5. # Executables
  6. ALL = howto-add_fd-and-popen$(EXEEXT) \
  7. howto-drag-and-drop$(EXEEXT) \
  8. howto-parse-args$(EXEEXT) \
  9. howto-text-over-image-button$(EXEEXT) \
  10. menubar-add$(EXEEXT) \
  11. nativefilechooser-simple-app$(EXEEXT) \
  12. table-as-container$(EXEEXT) \
  13. table-simple$(EXEEXT) \
  14. table-sort$(EXEEXT) \
  15. table-spreadsheet$(EXEEXT) \
  16. table-spreadsheet-with-keyboard-nav$(EXEEXT) \
  17. tabs-simple$(EXEEXT) \
  18. textdisplay-with-colors$(EXEEXT) \
  19. texteditor-simple$(EXEEXT) \
  20. tree-simple$(EXEEXT) \
  21. wizard-simple$(EXEEXT)
  22. # default target -- build everything
  23. default all: $(ALL)
  24. # clean everything
  25. clean:
  26. $(RM) $(ALL)
  27. $(RM) *.o
  28. $(RM) core