1f7923656Sespie #ifndef PARSE_H 2f7923656Sespie #define PARSE_H 3*b9023691Sespie /* $OpenBSD: parse.h,v 1.7 2015/11/29 09:17:12 espie Exp $ */ 4f7923656Sespie /* 5f7923656Sespie * Copyright (c) 2001 Marc Espie. 6f7923656Sespie * 7f7923656Sespie * Redistribution and use in source and binary forms, with or without 8f7923656Sespie * modification, are permitted provided that the following conditions 9f7923656Sespie * are met: 10f7923656Sespie * 1. Redistributions of source code must retain the above copyright 11f7923656Sespie * notice, this list of conditions and the following disclaimer. 12f7923656Sespie * 2. Redistributions in binary form must reproduce the above copyright 13f7923656Sespie * notice, this list of conditions and the following disclaimer in the 14f7923656Sespie * documentation and/or other materials provided with the distribution. 15f7923656Sespie * 16f7923656Sespie * THIS SOFTWARE IS PROVIDED BY THE OPENBSD PROJECT AND CONTRIBUTORS 17f7923656Sespie * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18f7923656Sespie * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 19f7923656Sespie * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OPENBSD 20f7923656Sespie * PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 21f7923656Sespie * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22f7923656Sespie * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23f7923656Sespie * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24f7923656Sespie * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25f7923656Sespie * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26f7923656Sespie * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27f7923656Sespie */ 28f7923656Sespie 29f7923656Sespie /* parse 30f7923656Sespie * Functions to parse Makefiles and fragments. 31f7923656Sespie */ 32f7923656Sespie 33f7923656Sespie extern void Parse_Init(void); 34*b9023691Sespie extern void Parse_End(void); 355db4dd9bSespie extern Lst systemIncludePath; 365db4dd9bSespie extern Lst userIncludePath; 37f7923656Sespie 38f7923656Sespie /* Parse_File(filename, filehandle); 39f7923656Sespie * Parses stream filehandle, use filename when reporting error 40f7923656Sespie * messages. Builds a graph of GNode and Suffixes. This modules 41f7923656Sespie * acquires ownership of the filename and filehandle, and will 42ad2b054bSespie * free/close them when it sees fit. */ 43f7923656Sespie extern void Parse_File(const char *, FILE *); 44f7923656Sespie 45f7923656Sespie /* Parse_AddIncludeDir(dir); 46f7923656Sespie * Adds directory dir to user include"" path (copy the string). */ 47f7923656Sespie extern void Parse_AddIncludeDir(const char *); 48f7923656Sespie 49f7923656Sespie /* Parse_MainName(lst); 50f7923656Sespie * Adds set of main targets to create to list lst. Errors out if no 51f7923656Sespie * target exists. */ 52f7923656Sespie extern void Parse_MainName(Lst); 53f7923656Sespie 54f7923656Sespie #endif 55