X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/954e4e9883693afe0b5e4e411c20d5cd23731f0f..a111f2b216a90bacb254644d3cae526eddc9f9f1:/samples/ipc/Makefile.in diff --git a/samples/ipc/Makefile.in b/samples/ipc/Makefile.in index 304f3a6d6b..9789fc0116 100644 --- a/samples/ipc/Makefile.in +++ b/samples/ipc/Makefile.in @@ -9,7 +9,7 @@ # # Makefile for ipc example (UNIX). -top_srcdir = @top_srcdir@ +top_srcdir = @top_srcdir@/.. top_builddir = ../.. program_dir = samples/ipc # the comment at the end of the next line is needed because otherwise autoconf @@ -21,7 +21,7 @@ VPATH = @PATH_IFS@$(top_srcdir)/samples/ipc # ':' for autoconf .SUFFIXES: .o .cpp .c .cxx .cpp.o : - $(CC) -c $(CPPFLAGS) -o $@ $< + $(CXX) -c $(CXXFLAGS) -o $@ $< # Set defaults from configure include ../../src/make.env @@ -29,10 +29,10 @@ include ../../src/make.env all: client server client: client.o ../../lib/@WX_TARGET_LIBRARY@ - $(CC) $(LDFLAGS) -o client client.o $(LDLIBS) + $(CXX) $(LDFLAGS) -o client client.o $(LDLIBS) server: server.o ../../lib/@WX_TARGET_LIBRARY@ - $(CC) $(LDFLAGS) -o server server.o $(LDLIBS) + $(CXX) $(LDFLAGS) -o server server.o $(LDLIBS) clean: rm -f $(OBJECTS) $(PROGRAM) core