# Makefile for building language lang mods under SAS/C
# current "official" support versions shown in the list below

# note that ATM, there's a lot of absolute warning errors when linking
# this way; shouldn't be a problem tho'.

# $VER: 1.0 (16.11.96)

all:	template.langmod \
		testlib

.c.o:
	sc nostackcheck OPT DATA=FAR $*.c 


### template.langmod ###

template.langmod: template.o
	sc link template.o startup=libinitr noicons to template.langmod libfd langmod.fd libversion 1 librevision 0 LIB lib:amiga.lib

template.o: template.c


### testlib ###

testlib: testlib.o
	sc link testlib.o to testlib

testlib.o: testlib.c
