]>
Commit | Line | Data |
---|---|---|
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 | ||
12 | top_srcdir = @top_srcdir@/.. | |
13 | top_builddir = ../.. | |
14 | program_dir = samples/sockets | |
15 | # the comment at the end of the next line is needed because otherwise autoconf | |
16 | # would remove this line completely - it contains a built-in hack to remove | |
17 | # any VPATH assignment not containing ':' | |
18 | VPATH = @PATH_IFS@$(top_srcdir)/samples/sockets # ':' for autoconf | |
19 | ||
20 | # Clears all default suffixes | |
21 | .SUFFIXES: .o .cpp .c .cxx | |
22 | ||
23 | .cpp.o : | |
24 | $(CC) -c $(CXXFLAGS) -o $@ $< | |
25 | ||
26 | # Set defaults from configure | |
27 | include ../../src/make.env | |
28 | ||
29 | all: client@PROGRAM_EXT@ server@PROGRAM_EXT@ | |
30 | ||
31 | sockets_resources.o: sockets.rc | |
32 | $(RESCOMP) $(RCINPUTSWITCH) $< $(RCOUTPUTSWITCH) $@ $(RESFLAGS) | |
33 | ||
34 | client@PROGRAM_EXT@: client.o ../../lib/@WX_TARGET_LIBRARY@ sockets_resources.o | |
35 | $(CC) $(LDFLAGS) -o client@PROGRAM_EXT@ sockets_resources.o client.o $(LDLIBS) | |
36 | ||
37 | server@PROGRAM_EXT@: server.o ../../lib/@WX_TARGET_LIBRARY@ | |
38 | $(CC) $(LDFLAGS) -o server@PROGRAM_EXT@ sockets_resources.o server.o $(LDLIBS) | |
39 | ||
40 | clean: | |
41 | rm -f client@PROGRAM_EXT@ server@PROGRAM_EXT@ sockets_resources.o client.o server.o core | |
42 |