home *** CD-ROM | disk | FTP | other *** search
- Path: news.gatecom.com!gatecoms!cgolchert
- From: cgolchert@gatecoms.gatecom.com (Chris Golchert)
- Newsgroups: comp.sys.amiga.programmer
- Subject: Help linking
- Date: 26 Mar 1996 13:51:32 GMT
- Organization: Gateway Communications Inc.
- Message-ID: <4j8sp4$r3@www.gatecom.com>
- NNTP-Posting-Host: gatecoms.gatecom.com
- X-Newsreader: TIN [version 1.2 PL2]
-
- hey my original got bumped off
-
- I need to find out what version of SAS/C will understand this "smakefile"...
-
- #
- # Makefile for SAS/C LightWave plugins
- #
-
-
- # Plugins must be made with no stack checking to prevent the attempt to
- # exit. Since there are multiple entry points, there is no clear exit
- # option.
- #
- UINC = //include/
- ULIB = //lib/
- CFLAGS = cpu=68020 math=68881 opt nostkchk idir=$(UINC)
-
-
- # Output *.p modules are made directly from C source files to keep this
- # example simple.
- #
- .c.p:
- sc link $(CFLAGS) startup=$(ULIB)serv_s.o $*.c $(ULIB)server.lib pname=$@
-
- all : blotch.p
-
-
- I have LC not SC
- BLINK no SLINK
-
- and I have to compile the file by hand and LMK doesn't understand "="
- when it hits pname= in the above
-
- HELP
-
- Chris
-
-