mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-03 22:23:24 +00:00
9a863ddecf
ports/www/chimera was done before. PR: 4248 Submitted by: Bruce Gingery <bgingery@gtcs.com>
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
*** 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
|