#
#
#
# **************************************************************************
# 
# 	Copyright (c) 1991		The Santa Cruz Operation, Inc.
# 
# 	All rights reserved.  No part of this program or publication may be
# 	reproduced, transmitted, transcribed, stored in a retrieval system,
# 	or translated into any language or computer language, in any form or
# 	by any means, electronic, mechanical, magnetic, optical, chemical,
# 	biological, or otherwise, without the prior written permission of:
# 	
# 		The Santa Cruz Operation , Inc.		(408) 425-7222
# 		400 Encinal St., Santa Cruz, California 95060 USA
# 
# **************************************************************************
#
#
#
#  __ ___ ___  Copyright (C) 1988-1991 IXI Limited.
#  \ /  //  / 
#   /  //  /   IXI Limited, 62-74 Burleigh Street,
#  /__//__/_\  Cambridge, CB1 1OJ, United Kingdom
#
#  Programs    : DropDemo, MinimalEditor
#  Module      : Makefile
#  Description : Makefile for the X.desktop drop directory.
#  SCCS data   : @(#) Makefile 6.2

all build: dropdemo mined

# Standard macros
CFLAGS = -O
LDFLAGS = 
LIBS = -lXm -lXt -lX11 -lmalloc -lsocket -lPW

# Specific targets

dropdemo : dropdemo.o dropin.o
	$(CC) $(LDFLAGS) dropdemo.o dropin.o $(LIBS) -o dropdemo

mined : mined.o dropin.o
	$(CC) $(LDFLAGS) mined.o dropin.o $(LIBS) -o mined

clean:
	rm -f *.o dropdemo mined

includes depend install:
	@echo "nothing to $@"

