Section One BBS

Welcome, Guest.


Subject: The MakeNl makefile for Amiga -- yes, it still exists! Date: Sun Nov 30 2014 01:48 pm
From: Bj”rn Felten To: andrew clarke

 ac> I don't know what SASC uses as a compiler #define. __SASC__ maybe?

# amiga makefile for makenl
# SAS/C 6.58

# generate release version:    smake
# delete temporary files:      smake clean

default: makenl

CC = sc
CFLAGS =

OBJ=config.o   crc16.o    fileutil.o fts5.o    lsttool.o makenl.o merge.o    \
    mkdiff.o   msgtool.o  output.o   process.o stack.o   strtool.o upcont.o   \
    os.o

..c.o:
	$(CC) $(CFLAGS) $*

config.o : config.c

crc16.o : crc16.c

fileutil.o : fileutil.c

fts5.o : fts5.c

lsttool.o : lsttool.c

makenl.o : makenl.c

merge.o : merge.c

mkdiff.o : mkdiff.c

msgtool.o : msgtool.c

output.o : output.c

process.o : process.c

stack.o : stack.c

strtool.o : strtool.c

upcont.o : upcont.c

os.o : os.c

makenl: $(OBJ)
	$(CC) link to makenl $(OBJ)

clean:
	-delete *.o
	-delete makenl makenl.info makenl.lnk

--- Mozilla/5.0 (Windows; U; Windows NT 5.1; sv-SE; rv:1.9.1.16) Gecko/20101125
 * Origin: news://felten.yi.org (2:203/2)

Previous Message       Next Message
In Reply To: The MakeNl makefile for Amiga -- yes, it still exists! (andrew clarke)
Replies: The MakeNl makefile for Amiga -- yes, it still exists! (Benny Pedersen)The MakeNl makefile for Amiga -- yes, it still exists! (andrew clarke)