]> git.saurik.com Git - wxWidgets.git/blob - contrib/src/gizmos/makefile.unx
Some more tests and mouse events for wxCanvas.
[wxWidgets.git] / contrib / src / gizmos / makefile.unx
1 #
2 # File: makefile.unx
3 # Author: Julian Smart
4 # Created: 1998
5 # Updated:
6 # Copyright: (c) 1998
7 #
8 #
9 # Makefile for Gizmos library, Unix
10
11 include ../../src/make.env
12
13 GIZMOSLIB=$(WXDIR)/lib/libgizmos$(GUISUFFIX).a
14
15 LIB_CPP_SRC=\
16 \
17 multicell.o\
18 splittree.o
19
20 all: $(GIZMOSLIB)
21
22 # Define library objects
23 OBJECTS=\
24 $(LIB_CPP_SRC:.cpp=.o)
25
26 $(GIZMOSLIB) : $(OBJECTS)
27 ar $(AROPTIONS) $@ $(OBJECTS)
28 $(RANLIB) $@
29
30 clean:
31 rm -f $(OBJECTS) $(GIZMOSLIB)
32