blob: 1ef00250be022c38d6bbe94fc27c28e3b50f9283 (
plain) (
blame)
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
41
42
43
44
45
46
47
48
49
50
|
*** Imakefile.orig Sun Aug 17 23:18:18 1997
--- Imakefile Mon Nov 24 10:34:00 1997
***************
*** 4,10 ****
#if HasGcc
#ifdef CDebugging
! #define PassCDebugFlags "CDEBUGFLAGS=-g -Wall"
#else
#define PassCDebugFlags "CDEBUGFLAGS=-O -Wall"
#endif
--- 4,10 ----
#if HasGcc
#ifdef CDebugging
! #define PassCDebugFlags "CDEBUGFLAGS=-g -Wall ${CFLAGS}"
#else
#define PassCDebugFlags "CDEBUGFLAGS=-O -Wall"
#endif
***************
*** 19,32 ****
SUBDIRS = port common image html plain proto mxw chimera
MakeSubdirs($(SUBDIRS))
! InstallSubdirs($(SUBDIRS))
DependSubdirs($(SUBDIRS))
CleanSubdirs($(SUBDIRS))
MakefileSubdirs($(SUBDIRS))
! InstallManSubdirs($(SUBDIRS))
myclean: clean
$(RM) Common.tmpl Makefile Makefile.bak make.err make.out .depend
! for i in $(SUBDIRS); do \
$(RM) $$i/Makefile $$i/Makefile.bak $$i/.depend; \
done
--- 19,32 ----
SUBDIRS = port common image html plain proto mxw chimera
MakeSubdirs($(SUBDIRS))
! InstallSubdirs(main)
DependSubdirs($(SUBDIRS))
CleanSubdirs($(SUBDIRS))
MakefileSubdirs($(SUBDIRS))
! InstallManSubdirs(main)
myclean: clean
$(RM) Common.tmpl Makefile Makefile.bak make.err make.out .depend
! for i in $(SUBDIRS) $(SOSUBDIRS); do \
$(RM) $$i/Makefile $$i/Makefile.bak $$i/.depend; \
done
|