#
# $PROJECT: Makefile includes
#
# $VER: vars.mk 39.2 (24.09.97)
#
# $AUTHOR: Stefan Ruppert , Windthorststrasse 5 , 65439 Floersheim , GERMANY
#
# $COPYRIGHT: (C) Copyright 1997 by Stefan Ruppert, All Rights Reserved!
#
# $EMAIL: ruppert@amigaworld.com
#
# $HISTORY:
#
# 24.09.97 : 039.002 : added default compiler
# 05.07.97 : 039.001 : initial
#

VARS_INCLUDED = TRUE

ifeq "$(COMPILER)X" "X"
COMPILER = sas
endif

######
#
# file operation commands
#

PROTECT     = protect
PROTECTFLAGS=

CP          = copy
CPFLAGS     =

MV          = move
MVFLAGS     = QUIET

RM          = delete
RMFLAGS     = quiet

MKDIR       = mkdir
MKDIRFLAGS  = all

######
#
# source generation commands
#

MKPROTO     = mkproto
MKPRAGMA    = pragma_gen


######
#
# documentation commands
#

MKDOC       = makedoc
MKGUIDE     = xrefconvert


######
#
# catalog creation commands

CATCOMP     = catcomp


######
#
# RCS commands
#

CI       = ci
CO       = co


######
#
# misc commands
#

FLUSHLIB    = remlibs


######
#
# target files
#

DTYPEDEST  = Sys:Classes/DataTypes

include $(COMPILER)_vars.mk

ifneq "$(CPU)" ""
OBJDIR     = $(COMPOBJDIR)$(SHORTNAME)/$(COMPILER)/$(CPU)
else
OBJDIR     = $(COMPOBJDIR)$(SHORTNAME)/$(COMPILER)
endif
DIRS       = $(OBJDIR)

OBJS       = $(SRCS:%.c=$(OBJDIR)/%.o)

