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


Makefile for FM example

HPVM_ROOT   = ..\..
!include $(HPVM_ROOT)\conf\$(HPVM_ARCH).conf

CFLAGS      = $(HPVM_CFLAGS)

HPVM_LIBS   = $(HPVM_LIB_PATH)\fm.lib

# Build it.

helloworld$(EXE): helloworld$(OBJ) $(HPVM_LIBS) 
    $(CC) $(CFLAGS) $(EXEOUT)helloworld$(EXE) $** $(HPVM_ARCH_LIBS)

clean:
        $(RM) helloworld$(EXE) *.obj


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