home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1997 November
/
PCWorld_1997-11_cd.bin
/
software
/
programy
/
komix
/
DATA.Z
/
Makefile
< prev
next >
Wrap
Makefile
|
1996-05-31
|
1KB
|
56 lines
#---------------------------------------------------------------------------
#
# Copyright (c) 1994 by Westmount Technology B.V., Delft, The Netherlands.
#
# This software is furnished under a license and may be used only in
# accordance with the terms of such license and with the inclusion of
# the above copyright notice. This software or any other copies thereof
# may not be provided or otherwise made available to any other person.
# No title to and ownership of the software is hereby transferred.
#
# The information in this software is subject to change without notice
# and should not be construed as a commitment by Westmount Technology B.V.
#
#---------------------------------------------------------------------------
#
# File : @(#)Makefile 1.3
# Author : peku
# Original date : Tue Feb 22 10:43:21 MET 1994
# Description : Makefile for librw4omt.a
#
#---------------------------------------------------------------------------
#
.SUFFIXES:
.SUFFIXES: .cxx .o
INCS = -I../../include
INSTALLDIR = ../../lib
CXX = CC
CXXFLAGS = $(INCS)
TARGET = librw4omt.a
OBJ = \
WmtRWTHashRWCString.o \
WmtRWTHashVoidPtr.o
$(TARGET): $(OBJ)
ar ruv $@ $?
ranlib $@
install: $(TARGET)
if [ ! -d $(INSTALLDIR) ]; then mkdir $(INSTALLDIR); fi
cp $(TARGET) $(INSTALLDIR)
chmod 644 $(INSTALLDIR)/$(TARGET)
ranlib $(INSTALLDIR)/$(TARGET)
.cxx.o:
$(CXX) $(CXXFLAGS) -c $<
clean:
rm -f *.o *.c
clobber:
rm -f *.o *.c *.a