diff options
| author | Nick Barnes | 2001-10-31 14:40:56 +0000 |
|---|---|---|
| committer | Nick Barnes | 2001-10-31 14:40:56 +0000 |
| commit | 7acfca905d76140f4cc0b09c9a12de237de364cd (patch) | |
| tree | 3ed8babfa3a73d30f29e08ca5d5adcda4ca4e826 /mps/code/xcppgc.gmk | |
| parent | b7ce4893f9902d57cd67ac9a92fa6c3d5a8fc833 (diff) | |
| download | emacs-7acfca905d76140f4cc0b09c9a12de237de364cd.tar.gz emacs-7acfca905d76140f4cc0b09c9a12de237de364cd.zip | |
Branch imports for masters.
Copied from Perforce
Change: 23678
ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code/xcppgc.gmk')
| -rw-r--r-- | mps/code/xcppgc.gmk | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/mps/code/xcppgc.gmk b/mps/code/xcppgc.gmk new file mode 100644 index 00000000000..6c2cd7e64a8 --- /dev/null +++ b/mps/code/xcppgc.gmk | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | # impl.gmk.xcppgc: BUILD FOR MACOS X (CARBON)/POWERPC/GCC PLATFORM | ||
| 2 | # | ||
| 3 | # $HopeName: MMsrc!xcppgc.gmk(MM_epcore_brisling.1) $ | ||
| 4 | # Copyright (C) 2001 Harlequin Limited. All rights reserved. | ||
| 5 | |||
| 6 | PFM = xcppgc | ||
| 7 | |||
| 8 | MPMPF = mpsliban.c mpsioan.c lockan.c than.c vmxc.c \ | ||
| 9 | protan.c prmcan.c span.c ssan.c | ||
| 10 | SWPF = than.c vmxc.c protsw.c prmcan.c ssan.c | ||
| 11 | |||
| 12 | LIBS = | ||
| 13 | |||
| 14 | RANLIB=ranlib | ||
| 15 | |||
| 16 | include gc.gmk | ||
| 17 | |||
| 18 | CC = cc | ||
| 19 | |||
| 20 | # Suppress some warnings (last checked in DP3). | ||
| 21 | # .cabs: -Wstrict-prototypes cannot be used because the math.h header has a | ||
| 22 | # traditional declaration of cabs. | ||
| 23 | # .sputc: -Wno-unused is needed, because stdio.h declares __sputc as an | ||
| 24 | # inline function. | ||
| 25 | # .types: sys/types.h uses 'long long' even under -ansi. | ||
| 26 | CFLAGSCOMPILER := $(subst -Wstrict-prototypes,,$(CFLAGSCOMPILER)) \ | ||
| 27 | -Wno-unused -Wno-long-long | ||
| 28 | |||
| 29 | include comm.gmk | ||