| 1 | # |
| 2 | # File: makefile.unx |
| 3 | # Author: Julian Smart |
| 4 | # Created: 1998 |
| 5 | # Updated: |
| 6 | # Copyright: (c) 1998 Julian Smart |
| 7 | # |
| 8 | # "%W% %G%" |
| 9 | # |
| 10 | # Makefile for minimal example (UNIX). |
| 11 | |
| 12 | top_srcdir = @top_srcdir@/.. |
| 13 | top_builddir = ../.. |
| 14 | program_dir = samples/widgets |
| 15 | |
| 16 | PROGRAM=widgets |
| 17 | |
| 18 | OBJECTS =button.o \ |
| 19 | combobox.o \ |
| 20 | gauge.o \ |
| 21 | listbox.o \ |
| 22 | notebook.o \ |
| 23 | radiobox.o \ |
| 24 | slider.o \ |
| 25 | spinbtn.o \ |
| 26 | static.o \ |
| 27 | textctrl.o \ |
| 28 | widgets.o |
| 29 | DEPFILES=button.d \ |
| 30 | combobox.d \ |
| 31 | gauge.d \ |
| 32 | listbox.d \ |
| 33 | notebook.d \ |
| 34 | radiobox.d \ |
| 35 | slider.d \ |
| 36 | spinbtn.d \ |
| 37 | static.d \ |
| 38 | textctrl.d \ |
| 39 | widgets.d |
| 40 | |
| 41 | include ../../src/makeprog.env |
| 42 | |
| 43 | @IF_GNU_MAKE@-include $(DEPFILES) |