From da6b4c447f03276d446d9dd87724e769e25d7084 Mon Sep 17 00:00:00 2001 From: steve Date: Sun, 14 Jul 2002 23:32:31 +0000 Subject: [PATCH] No longer need the .exe on generated files. --- driver/Makefile.in | 4 ++-- driver/main.c | 7 +++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/driver/Makefile.in b/driver/Makefile.in index c014d09b3..064e6cc71 100644 --- a/driver/Makefile.in +++ b/driver/Makefile.in @@ -18,7 +18,7 @@ # 59 Temple Place - Suite 330 # Boston, MA 02111-1307, USA # -#ident "$Id: Makefile.in,v 1.13 2002/06/23 20:10:51 steve Exp $" +#ident "$Id: Makefile.in,v 1.14 2002/07/14 23:32:31 steve Exp $" # # SHELL = /bin/sh @@ -75,7 +75,7 @@ cfparse.h cfparse.c: cfparse.y main.o: main.c globals.h - $(CC) $(CFLAGS) -c -DCXX='"@CXX@"' -DIVL_ROOT='"@libdir@/ivl"' -DIVL_INC='"@includedir@"' -DIVL_LIB='"@libdir@"' -DRDYNAMIC=\"$(rdynamic)\" -DDLLIB='"@DLLIB@"' -DEXEEXT='"@EXEEXT@"' $(srcdir)/main.c + $(CC) $(CFLAGS) -c -DCXX='"@CXX@"' -DIVL_ROOT='"@libdir@/ivl"' -DIVL_INC='"@includedir@"' -DIVL_LIB='"@libdir@"' -DRDYNAMIC=\"$(rdynamic)\" -DDLLIB='"@DLLIB@"' $(srcdir)/main.c build_string.o: build_string.c globals.h lexor.o: lexor.c parse.h globals.h diff --git a/driver/main.c b/driver/main.c index 424a707d4..02b57f30e 100644 --- a/driver/main.c +++ b/driver/main.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ -#ident "$Id: main.c,v 1.42 2002/07/14 23:11:35 steve Exp $" +#ident "$Id: main.c,v 1.43 2002/07/14 23:32:31 steve Exp $" # include "config.h" @@ -84,7 +84,7 @@ extern void cfreset(FILE*fd, const char*path); const char*base = 0; const char*mtm = 0; -const char*opath = "a.out" EXEEXT; +const char*opath = "a.out"; const char*npath = 0; const char*targ = "vvp"; const char*depfile = 0; @@ -746,6 +746,9 @@ int main(int argc, char **argv) /* * $Log: main.c,v $ + * Revision 1.43 2002/07/14 23:32:31 steve + * No longer need the .exe on generated files. + * * Revision 1.42 2002/07/14 23:11:35 steve * Do temp file creation by hand. *