home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 10
/
Sonderheft_12.iso
/
best-of-tools
/
packer
/
xpk3.11
/
xpk_source
/
examples
/
makefile
next >
Wrap
Makefile
|
1996-11-26
|
715b
|
39 lines
#
# Makefile for the various example programs
#
# The files in here:
# - xpkmanx.c : The 'xpk' program for Manx compilation
# - xpksas.c : The 'xpk' program for SAS compilation
# - xpkdice.c : The 'xpk' program for DICE compilation
#
msg:
-Please specify your compiler, either 'make manx', 'make sas' or 'make dice'
all: manx dice sas gcc
manx: xpkmanx
dice: xpkdice
sas : xpksas
gcc : xpkgcc
#-----MANX
xpkmanx: xpkmanx.c
cc xpkmanx.c
ln xpkmanx.o -lc
#----DICE
xpkdice: xpkdice.c
dcc xpkdice.c -lxpkmaster.lib -oxpkdice
#----SAS
xpksas: xpksas.c
sc xpksas.c LINK TO xpksas LIB lib:sc.lib NOICONS
clean:
-Delete "#?.o"
-Delete "#?manx"
-Delete "#?sas"
-Delete "#?.lnk"
-Delete "#?dice"