1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
##############################################################################
# #
# Make file for the Amiga version of UNACE using SAS C. #
# #
# #
# Rev 01 97/12/03 Wilfred van Velzen #
# #
##############################################################################
# #
# To compile the Amiga version of UNACE with SAS C: #
# #
# Copy the files "smakefile" and "scoptions" to the directory with all the #
# source files (*.c, *.h), and type "smake" on the commandline in a shell. #
# #
##############################################################################
OBJS= Uac_crc.o Globals.o Uac_crt.o Unace.o Uac_sys.o Uac_dcpr.o Uac_comm.o
CDEFINES = DEF=AMIGA
Unace: $(OBJS)
sc link to Unace $(OBJS)
Globals.o: Globals.c os.h acestruc.h unace.h declare.h portable.h
Uac_crc.o: Uac_crc.c uac_crc.h declare.h os.h
Uac_crt.o: Uac_crt.c os.h attribs.h globals.h uac_crt.h uac_sys.h unace.h \
acestruc.h declare.h portable.h
Uac_comm.o: Uac_comm.c uac_dcpr.h uac_comm.h unace.h declare.h os.h
Uac_dcpr.o: Uac_dcpr.c os.h globals.h portable.h uac_comm.h uac_crc.h \
uac_dcpr.h uac_sys.h unace.h acestruc.h declare.h
Uac_sys.o: Uac_sys.c globals.h uac_sys.h unace.h acestruc.h declare.h \
portable.h os.h
Unace.o: Unace.c os.h globals.h portable.h uac_comm.h uac_crc.h uac_crt.h \
uac_dcpr.h uac_sys.h unace.h acestruc.h declare.h
.c.o:
sc $(CDEFINES) $<
# end of makefile
|