# SMakefile for GuideTool V1.0
# (C) 1995 by Reinhard Katzmann. All right reserved.
# GuideTool is Freeware, SRC Usage is restricted (see source code)

# CC = Compiler
# LN = Linker
# COPTS = Compiler Options
# DEBUG = Debug options (Turn on if needed)
# Remove Debug Symbols with STRIPDEBUG if needed

CC = SC
LN = SC link # Compiling + Linking possible
COPTS = NOSTACKCHECK
#DEBUG = DEBUG=full
DEBUG =

all: GuideTool

GuideTool: GuideTool.c GuideTool_rev.h
   $(LN) GuideTool.c $(COPTS) $(DEBUG)
