3711412e38
reworked makelib.env so that it now can create shared libs and has (un)install targets. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6843 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
42 lines
996 B
Makefile
42 lines
996 B
Makefile
#
|
|
# File: makefile.unx
|
|
# Author: Julian Smart
|
|
# Created: 1998
|
|
# Updated:
|
|
# Copyright: (c) 1998 Julian Smart
|
|
#
|
|
# "%W% %G%"
|
|
#
|
|
# Makefile for minimal example (UNIX).
|
|
|
|
top_srcdir = @top_srcdir@/..
|
|
top_builddir = ../../..
|
|
program_dir = contrib/samples/mmedia
|
|
|
|
PROGRAM=mmboard
|
|
|
|
OBJECTS=mmboard.o mmbman.o
|
|
|
|
EXTRA_LIBS= $(top_builddir)/contrib/src/mmedia/libmmedia.@WX_TARGET_LIBRARY_TYPE@ @ESD_LINK@
|
|
APPEXTRADEFS=-I$(top_srcdir)/contrib/include
|
|
|
|
# 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)/contrib/samples/mmedia # ':' for autoconf
|
|
|
|
include ../../../src/make.env
|
|
|
|
.SUFFIXES: .o .cpp .c
|
|
|
|
.cpp.o:
|
|
$(CC) -c $(CPPFLAGS) $(EXTRA_CPPFLAGS) -o $@ $<
|
|
|
|
all: $(PROGRAM)
|
|
|
|
clean:
|
|
rm -f *.o $(PROGRAM)
|
|
|
|
mmboard: $(OBJECTS)
|
|
$(CC) $(LDFLAGS) -o mmboard $(OBJECTS) $(EXTRA_LIBS) $(LDLIBS) $(top_builddir)/lib/@WX_TARGET_LIBRARY@
|