home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
wxos2233.zip
/
wxOS2-2_3_3.zip
/
wxWindows-2.3.3
/
contrib
/
src
/
gizmos
/
makefile.unx
< prev
next >
Wrap
Makefile
|
2001-08-22
|
518b
|
35 lines
#
# File: makefile.unx
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998
#
#
# Makefile for Gizmos library, Unix
include ../../src/make.env
GIZMOSLIB=$(WXDIR)/lib/libgizmos$(GUISUFFIX).a
LIB_CPP_SRC=\
\
multicell.o\
editlbox.o\
splittree.o\
dynamicsash.o
all: $(GIZMOSLIB)
# Define library objects
OBJECTS=\
$(LIB_CPP_SRC:.cpp=.o)
$(GIZMOSLIB) : $(OBJECTS)
ar $(AROPTIONS) $@ $(OBJECTS)
$(RANLIB) $@
clean:
rm -f $(OBJECTS) $(GIZMOSLIB)