150479Speter/* $FreeBSD$ */
2327Sjkh
3327Sjkh/*
4228990Suqs * FreeBSD install - a package for the installation and maintenance
5327Sjkh * of non-core utilities.
6327Sjkh *
7327Sjkh * Redistribution and use in source and binary forms, with or without
8327Sjkh * modification, are permitted provided that the following conditions
9327Sjkh * are met:
10327Sjkh * 1. Redistributions of source code must retain the above copyright
11327Sjkh *    notice, this list of conditions and the following disclaimer.
12327Sjkh * 2. Redistributions in binary form must reproduce the above copyright
13327Sjkh *    notice, this list of conditions and the following disclaimer in the
14327Sjkh *    documentation and/or other materials provided with the distribution.
15327Sjkh *
16327Sjkh * Jordan K. Hubbard
17327Sjkh * 18 July 1993
18327Sjkh *
19327Sjkh * Include and define various things wanted by the delete command.
20327Sjkh *
21327Sjkh */
22327Sjkh
23327Sjkh#ifndef _INST_DELETE_H_INCLUDE
24327Sjkh#define _INST_DELETE_H_INCLUDE
25327Sjkh
26327Sjkhextern char	*Prefix;
2773134Ssobomaxextern Boolean	CleanDirs;
2873134Ssobomaxextern Boolean	Interactive;
29327Sjkhextern Boolean	NoDeInstall;
3083663Ssobomaxextern Boolean	Recursive;
31327Sjkhextern char	*Directory;
32327Sjkhextern char	*PkgName;
3373134Ssobomaxextern match_t	MatchType;
34327Sjkh
35327Sjkh#endif	/* _INST_DELETE_H_INCLUDE */
36