git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3349 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
32 lines
590 B
Bash
32 lines
590 B
Bash
# Makes a library in Unix (Motif)
|
|
|
|
# Replace this with your own path if necessary
|
|
WXDIR = $(WXWIN)
|
|
|
|
# Clears all default suffixes
|
|
.SUFFIXES: .o .cpp .c .cxx
|
|
|
|
.c.o :
|
|
$(CCC) -c $(CFLAGS) -o $@ $<
|
|
|
|
.cpp.o :
|
|
$(CC) -c $(CPPFLAGS) -o $@ $<
|
|
|
|
.cxx.o :
|
|
$(CC) -c $(CPPFLAGS) -o $@ $<
|
|
|
|
# this is for using the samples in ../samples/xxxxx
|
|
pretop_srcdir = @top_srcdir@
|
|
top_srcdir = ../$(pretop_srcdir)
|
|
top_builddir = ../..
|
|
include ../../src/make.env
|
|
|
|
all: $(LIBTARGET).a
|
|
|
|
$(LIBTARGET).a : $(OBJECTS)
|
|
ar $(AROPTIONS) $@ $(OBJECTS)
|
|
$(RANLIB) $@
|
|
|
|
clean:
|
|
rm -f $(OBJECTS) $(LIBTARGET).a core
|