#ifndef _MAKE_H_ #define _MAKE_H_ # include "rules.h" /* * Copyright 1993, 1995 Christopher Seiwald. * * This file is part of Jam - see jam.c for Copyright information. */ /* * make.h - bring a target up to date, once rules are in place */ int make( const int n_targets, const char **targets, const int anyhow ); int make1( TARGET *t ); #endif