[BACK]Return to Makefile.vc CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / windows / cpp

File: [local] / OpenXM_contrib2 / windows / cpp / Makefile.vc (download)

Revision 1.1, Mon Mar 9 16:00:42 2009 UTC (15 years, 2 months ago) by ohara
Branch: MAIN

Now we can build Risa/Asir for Windows x64 by Visual Studio 2008.
but pari functions and html helps are disabled.

makefiles are written in Microsoft nmake.

## $OpenXM: OpenXM_contrib2/windows/cpp/Makefile.vc,v 1.1 2009/03/09 16:00:42 ohara Exp $
## Makefile for Visual Studio 2008

CFLAGS= -nologo -MT -W3 -EHsc -Ox -D WIN32 -D NDEBUG -D _WINDOWS -D _MBCS
CPPFLAGS= $(CFLAGS)
LD=link
LDFLAGS=/nologo /subsystem:windows /incremental:no
OBJS= cpp.obj cpp_main.obj StdAfx.obj

all: cpp.exe

cpp.exe: $(OBJS)
    $(LD) $(LDFLAGS) /out:$@ $(OBJS)

clean:
	-@del *.obj

distclean: clean
	-@del cpp.exe