]>
Commit | Line | Data |
---|---|---|
549c6f67 RR |
1 | # |
2 | # File: Makefile.in | |
3 | # Author: Julian Smart | |
4 | # Created: 1998 | |
5 | # Updated: | |
6 | # Copyright: (c) 1998 Julian Smart | |
7 | # | |
8 | # "%W% %G%" | |
9 | # | |
10 | # Makefile for wxsocket example (UNIX). | |
11 | ||
48fe8374 | 12 | top_srcdir = @top_srcdir@/.. |
549c6f67 | 13 | top_builddir = ../.. |
954e4e98 | 14 | program_dir = samples/sockets |
549c6f67 | 15 | |
df43c1d6 MB |
16 | OBJECTS =$(PROGRAM).o |
17 | DEPFILES=$(PROGRAM).d | |
549c6f67 | 18 | |
846e4632 GD |
19 | # this target can't be called all |
20 | all-both: | |
df43c1d6 MB |
21 | $(MAKE) PROGRAM=client all |
22 | $(MAKE) PROGRAM=server all | |
549c6f67 | 23 | |
846e4632 GD |
24 | # this target can't be called clean |
25 | clean-both: | |
26 | $(MAKE) PROGRAM=client clean | |
27 | $(MAKE) PROGRAM=server clean | |
28 | ||
df43c1d6 | 29 | include ../../src/makeprog.env |
549c6f67 | 30 | |
27fd0246 | 31 | @IF_GNU_MAKE@-include $(DEPFILES) |