=================================================================== RCS file: /home/cvs/OpenXM/src/oxmgraph/Makefile.vc,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- OpenXM/src/oxmgraph/Makefile.vc 2009/03/17 17:04:14 1.1 +++ OpenXM/src/oxmgraph/Makefile.vc 2009/03/18 02:59:06 1.2 @@ -1,11 +1,14 @@ -# $OpenXM$ +# $OpenXM: OpenXM/src/oxmgraph/Makefile.vc,v 1.1 2009/03/17 17:04:14 ohara Exp $ CFLAGS=-nologo -MT -Ox -I . +LD=link +LDFLAGS=-nologo -all: graph.exe +all: oxmgraph.exe -graph.exe: graph.c - $(CC) $(CFLAGS) -o $@ graph.c +oxmgraph.exe: graph.obj + $(LD) $(LDFLAGS) -out:$@ $** clean: - -@del graph.exe \ No newline at end of file + -@del oxmgraph.exe + -@del *.obj