#
# $Id: Makefile,v 1.2 1998/07/17 18:11:21 nicb Exp $
#								SCOT makef

TOP = ../..

include $(TOP)/Make.Variables

THISDIR=util1/scot
OBJS =  main.o
SRCS = main.c Makefile
SCOT=$(APP_PREFIX)scot
SUBPROGS=$(SCOT)
LDFLAGS:=-L$(TOP) $(LDFLAGS)

$(SCOT):	$(OBJS)
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)

install: 	$(SCOT)
	if [ ! -d $(DEST) ]; then $(MKDIR) $(DEST); fi
	$(INSTALL) -s -m 755 $(SCOT) $(DEST)

include $(TOP)/Make.Subdirs
#
# $Log: Makefile,v $
# Revision 1.2  1998/07/17 18:11:21  nicb
# [changes and additions by nicb@axnet.it]
#
# - configure process:
# 	- added canonical host detection and install detection
# 	- modified Makefiles to suit the install macro better
# 	- static linking does not imply -static anymore (not standalone,
# 	  just with csound library integration)
#
# - sources:
# 	- integrated back some changes made to suit the dynamical
# 	  main/library linking that somehow got lost in the original
# 	  sources (wonder how it did work up to now, but anyway it
# 	  was not working for static linking)
#
# Revision 1.1.1.1  1998/07/08 20:48:18  nicb
# - Initial Revision (second rebuilding of the repository)
#
# Revision 0.0  1998/05/16 12:05:54  nicb
# Initial Revision
#
