]> git.saurik.com Git - wxWidgets.git/blame - contrib/src/gizmos/makefile.unx
STL compilation fixes.
[wxWidgets.git] / contrib / src / gizmos / makefile.unx
CommitLineData
58580a7e
JS
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
11include ../../src/make.env
12
13GIZMOSLIB=$(WXDIR)/lib/libgizmos$(GUISUFFIX).a
14
15LIB_CPP_SRC=\
16\
17 multicell.o\
e96360ef 18 editlbox.o\
eacb91fc 19 splittree.o\
fca36d9a
JS
20 dynamicsash.o\
21 ledctrl.o\
22 statpict.o
58580a7e
JS
23
24all: $(GIZMOSLIB)
25
26# Define library objects
27OBJECTS=\
28 $(LIB_CPP_SRC:.cpp=.o)
29
30$(GIZMOSLIB) : $(OBJECTS)
31 ar $(AROPTIONS) $@ $(OBJECTS)
32 $(RANLIB) $@
33
34clean:
35 rm -f $(OBJECTS) $(GIZMOSLIB)
36