From: Peter Johnson Date: Sun, 16 Mar 2003 00:37:35 +0000 (-0000) Subject: Remove old Visual C++ makefile; new build structure is in vc subdirectory. X-Git-Tag: v0.2.2~3^2~65 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=21e94aece1905f3892bd9fd70b1408e5d500d6ae;p=yasm Remove old Visual C++ makefile; new build structure is in vc subdirectory. svn path=/trunk/yasm/; revision=866 --- diff --git a/Mkfiles/Makefile.vc b/Mkfiles/Makefile.vc deleted file mode 100644 index c8bcf58f..00000000 --- a/Mkfiles/Makefile.vc +++ /dev/null @@ -1,76 +0,0 @@ -# $IdPath$ -# -# Ultra-flat Makefile for Visual C++. -# Does NOT depend on or use configure. -# -# Works for simple build but *not* for development (no clean, dist, etc). -# Also, WARNING, no header dependencies are included! -# -# How to compile: -# nmake -fMkfiles/Makefile.vc - -CFLAGS=/DHAVE_CONFIG_H /IMkfiles/vc /I. /Isrc /Isrc/arch/x86 -CC=cl - -all: yasm.exe - -YASM_BASE_OBJS= \ - src/bytecode.obj \ - src/expr.obj \ - src/symrec.obj \ - src/globals.obj \ - src/file.obj \ - src/section.obj \ - src/arch.obj \ - src/objfmt.obj \ - src/preproc.obj \ - src/parser.obj \ - src/intnum.obj \ - src/floatnum.obj \ - src/hamt.obj \ - src/bitvect.obj \ - src/valparam.obj \ - src/xmalloc.obj \ - src/xstrdup.obj \ - src/strcasecmp.obj - -YASM_ARCH_OBJS= \ - src/arch/x86/x86arch.obj \ - src/arch/x86/x86bc.obj \ - src/arch/x86/x86expr.obj - -YASM_PARSER_OBJS= \ - src/parsers/nasm/nasm-parser.obj \ - nasm-bison.obj \ - nasm-token.obj - -YASM_PREPROC_OBJS= \ - src/preprocs/raw/raw-preproc.obj \ - src/preprocs/yapp/yapp-preproc.obj \ - yapp-token.obj - -YASM_OPTIMIZER_OBJS= \ - src/optimizers/basic/basic-optimizer.obj - -YASM_OBJFMT_OBJS= \ - src/objfmts/dbg/dbg-objfmt.obj \ - src/objfmts/bin/bin-objfmt.obj - -YASM_OBJS= \ - src/main.obj \ - src/errwarn.obj \ - src/options.obj \ - $(YASM_BASE_OBJS) \ - $(YASM_ARCH_OBJS) \ - $(YASM_PARSER_OBJS) \ - $(YASM_PREPROC_OBJS) \ - $(YASM_OPTIMIZER_OBJS) \ - $(YASM_OBJFMT_OBJS) \ - mergesort.obj - -yasm.exe: $(YASM_OBJS) - $(CC) /Feyasm.exe $(YASM_OBJS) - -.c.obj: - $(CC) /c $(CFLAGS) /Fo$@ $< -