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

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

Revision 1.2, Mon Mar 9 14:01:14 2009 UTC (15 years, 2 months ago) by ohara
Branch: MAIN
Changes since 1.1: +2 -2 lines

Removed unused libraries.

## $OpenXM: OpenXM_contrib2/windows/cpp/Makefile.vc6,v 1.2 2009/03/09 14:01:14 ohara Exp $
## Makefile for Visual C++ 6.0

CFLAGS= -nologo -ML -W3 -GX -Ox -D WIN32 -D NDEBUG -D _WINDOWS -D _MBCS
CPPFLAGS= $(CFLAGS)
LD=link
LDFLAGS=/nologo /subsystem:windows /incremental:no /machine:I386
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