48fe83743a
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5762 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
#
|
|
# File: Makefile.in
|
|
# Author: Julian Smart
|
|
# Created: 1998
|
|
# Updated:
|
|
# Copyright: (c) 1998 Julian Smart
|
|
#
|
|
# "%W% %G%"
|
|
#
|
|
# Makefile for wxsocket example (UNIX).
|
|
|
|
top_srcdir = @top_srcdir@/..
|
|
top_builddir = ../../..
|
|
program_dir = utils/wxMMedia2/sample
|
|
# the comment at the end of the next line is needed because otherwise autoconf
|
|
# would remove this line completely - it contains a built-in hack to remove
|
|
# any VPATH assignment not containing ':'
|
|
VPATH = @PATH_IFS@$(top_srcdir)/utils/wxMMedia2/sample # ':' for autoconf
|
|
|
|
# Clears all default suffixes
|
|
.SUFFIXES: .o .cpp .c .cxx
|
|
|
|
.cpp.o :
|
|
$(CC) -c $(CPPFLAGS) -o $@ $<
|
|
|
|
# Set defaults from configure
|
|
include ../../../src/make.env
|
|
|
|
LDLIBS2 = $(LDLIBS) ../lib/libwxmmedia2.a
|
|
|
|
all: test_med test_med3 test_med5 test_med2 test_med4
|
|
|
|
test_med: test_med.o ../../../lib/@WX_TARGET_LIBRARY@
|
|
$(CC) $(LDFLAGS) -o test_med test_med.o $(LDLIBS2)
|
|
|
|
test_med2: test_med2.o ../../../lib/@WX_TARGET_LIBRARY@
|
|
$(CC) $(LDFLAGS) -o test_med2 test_med2.o $(LDLIBS2)
|
|
|
|
test_med3: test_med3.o ../../../lib/@WX_TARGET_LIBRARY@
|
|
$(CC) $(LDFLAGS) -o test_med3 test_med3.o $(LDLIBS2)
|
|
|
|
test_med4: test_med4.o ../../../lib/@WX_TARGET_LIBRARY@
|
|
$(CC) $(LDFLAGS) -o test_med4 test_med4.o $(LDLIBS2)
|
|
|
|
test_med5: test_med5.o ../../../lib/@WX_TARGET_LIBRARY@
|
|
$(CC) $(LDFLAGS) -o test_med5 test_med5.o $(LDLIBS2)
|
|
|
|
|
|
clean:
|
|
rm -f test_med* core
|
|
|