Go to the first, previous, next, last section, table of contents.


Makefile for GA example

###################################################################
#  File   :  gabasic.mak
#
#  Summary:  Makefile for FM GA gabasic.exe (Microsoft nmake
#            format).  Requires HPVM_HOME environment variable.
#
#            Type 'nmake -fgabasic.mak'.
#
###################################################################

CC = cl
INCLUDES = /I$(HPVM_HOME)\include
CFLAGS =  /nologo /G5 /O2 $(INCLUDES)

LIBS = $(HPVM_HOME)\lib\global.lib $(HPVM_HOME)\lib\linalg.lib \
       $(HPVM_HOME)\lib\ma.lib $(HPVM_HOME)\lib\tcgmsg.lib \
       $(HPVM_HOME)\lib\FM.lib$(HPVM_HOME)\lib\myrilib.lib \
       wsock32.lib advapi32.lib

CLIBOPT = /link /NODEFAULTLIB:libc.lib

gabasic.exe: gabasic.obj
        $(CC) $(CFLAGS) /o gabasic.exe gabasic.obj $(LIBS) $(CLIBOPT)


Go to the first, previous, next, last section, table of contents.