From 0292142ee82f361edf4385bb6366a6a300b5b3a0 Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Sun, 23 Jan 2000 18:33:10 +0000 Subject: [PATCH] Added @PROGRAM_EXT@ as apropriate (hopefully ;-) ). Give 'make clean' a chance to actually do something. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5616 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/sockets/Makefile.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/samples/sockets/Makefile.in b/samples/sockets/Makefile.in index 936b7b8e5e..b82a9c2f5d 100644 --- a/samples/sockets/Makefile.in +++ b/samples/sockets/Makefile.in @@ -26,14 +26,14 @@ VPATH = @PATH_IFS@$(top_srcdir)/samples/sockets # ':' for autoconf # Set defaults from configure include ../../src/make.env -all: client server +all: client@PROGRAM_EXT@ server@PROGRAM_EXT@ -client: client.o ../../lib/@WX_TARGET_LIBRARY@ - $(CC) $(LDFLAGS) -o client client.o $(LDLIBS) +client@PROGRAM_EXT@: client.o ../../lib/@WX_TARGET_LIBRARY@ + $(CC) $(LDFLAGS) -o client@PROGRAM_EXT@ client.o $(LDLIBS) -server: server.o ../../lib/@WX_TARGET_LIBRARY@ - $(CC) $(LDFLAGS) -o server server.o $(LDLIBS) +server@PROGRAM_EXT@: server.o ../../lib/@WX_TARGET_LIBRARY@ + $(CC) $(LDFLAGS) -o server@PROGRAM_EXT@ server.o $(LDLIBS) clean: - rm -f $(OBJECTS) $(PROGRAM) core + rm -f client@PROGRAM_EXT@ server@PROGRAM_EXT@ client.o server.o core -- 2.50.0