File: icmake.h

package info (click to toggle)
icmake 7.18.00-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,840 kB
  • sloc: ansic: 7,784; makefile: 3,811; sh: 319; cpp: 83
file content (40 lines) | stat: -rw-r--r-- 964 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include "../rss/icrssdef.h"

#include "../tmp/INSTALL.im"

#ifdef SUN
#include <memory.h>
#endif


typedef enum
{
    f_preprocessor  =   (1 << 0),
    f_compiler      =   (1 << 1),
    f_quiet         =   (1 << 2),
    f_redirected    =   (1 << 3),
    f_blunt         =   (1 << 4),
    f_icmake        =   (1 << 5),
    f_tmpbim        =   (1 << 6)
} FLAGS_;

extern char
    version[],
    release[],
    cant_read[],
    r[],
    rb[];

extern char *temporary;
extern char *source_name;
extern char *dest_name;
extern FILE *fdest;
extern FLAGS_ flags;
extern int errors;

int     compile_test (void);           /* test if compilation is needed */
int     options (char **, int*);       /* process flags */
void    abnormal_exit (int);           /* abnormal eop */
void    about(void);                   /* about icmake */
void    cleanup (void);                /* cleanup temp. info */
void    quote_blanks(char **);         /* quote arguments with blanks */