No need to invoke the make command so many times. It can handle all

the target specified in command line.
This commit is contained in:
enami 2003-03-01 08:36:05 +00:00
parent 015ce49004
commit 3d76616fbe
1 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: crunchgen.c,v 1.42 2003/02/18 18:12:07 msaitoh Exp $ */ /* $NetBSD: crunchgen.c,v 1.43 2003/03/01 08:36:05 enami Exp $ */
/* /*
* Copyright (c) 1994 University of Maryland * Copyright (c) 1994 University of Maryland
* All Rights Reserved. * All Rights Reserved.
@ -33,7 +33,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
#if defined(__RCSID) && !defined(lint) #if defined(__RCSID) && !defined(lint)
__RCSID("$NetBSD: crunchgen.c,v 1.42 2003/02/18 18:12:07 msaitoh Exp $"); __RCSID("$NetBSD: crunchgen.c,v 1.43 2003/03/01 08:36:05 enami Exp $");
#endif #endif
#if HAVE_CONFIG_H #if HAVE_CONFIG_H
@ -884,8 +884,9 @@ void prog_makefile_rules(FILE *outmk, prog_t *p)
fprintf(outmk, "%s_SRCDIR=%s\n", p->ident, p->srcdir); fprintf(outmk, "%s_SRCDIR=%s\n", p->ident, p->srcdir);
fprintf(outmk, "%s_OBJS=", p->ident); fprintf(outmk, "%s_OBJS=", p->ident);
output_strlst(outmk, p->objs); output_strlst(outmk, p->objs);
fprintf(outmk, "%s_make: ${%s_OBJPATHS}\n", p->ident, p->ident); fprintf(outmk, "${%s_OBJPATHS}: %s_make\n", p->ident, p->ident);
fprintf(outmk, "${%s_OBJPATHS}: \n", p->ident); fprintf(outmk, ".PHONY: %s_make\n", p->ident);
fprintf(outmk, "%s_make:\n", p->ident);
fprintf(outmk, "\tif [ \\! -d %s ]; then mkdir %s; fi; cd %s; \\\n", fprintf(outmk, "\tif [ \\! -d %s ]; then mkdir %s; fi; cd %s; \\\n",
p->ident, p->ident, p->ident); p->ident, p->ident, p->ident);
fprintf(outmk, "\tprintf \".PATH: ${%s_SRCDIR}\\n.CURDIR:= ${%s_SRCDIR}\\n" fprintf(outmk, "\tprintf \".PATH: ${%s_SRCDIR}\\n.CURDIR:= ${%s_SRCDIR}\\n"