some doc bug fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1465 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
15 lines
315 B
Bash
15 lines
315 B
Bash
# Makes a library in Unix (Motif)
|
|
|
|
# Replace this with your own path if necessary
|
|
WXDIR = $(WXWIN)
|
|
include $(WXDIR)/src/make.env
|
|
|
|
all: $(LIBTARGET)$(GUISUFFIX).a
|
|
|
|
$(LIBTARGET)$(GUISUFFIX).a : $(OBJECTS)
|
|
ar $(AROPTIONS) $@ $(OBJECTS)
|
|
$(RANLIB) $@
|
|
|
|
clean:
|
|
rm -f $(OBJECTS) $(LIBTARGET)$(GUISUFFIX).a core
|