|
Revision 983, 368 bytes
(checked in by jbs, 9 months ago)
|
|
Change the SYM build code: DEBUB=1 is no longer required, new targets:
syms, exesyms and dllsyms. Also the dist target will build SYM files.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | # Copyright (c) 2002, 2007 Steven H. Levine |
|---|
| 4 | |
|---|
| 5 | # 16 Jun 07 GKY Convert to OpenWatcom |
|---|
| 6 | # 23 Feb 08 JBS Add support for building SYM files |
|---|
| 7 | |
|---|
| 8 | BASE=global |
|---|
| 9 | |
|---|
| 10 | !include makefile_pre.mk |
|---|
| 11 | |
|---|
| 12 | all: $(BASE).exe $(BASE).res .symbolic |
|---|
| 13 | |
|---|
| 14 | sym: $(BASE).sym .symbolic |
|---|
| 15 | |
|---|
| 16 | $(BASE).res: $(BASE).rc icons\$(BASE).ico bitmaps\*.bmp |
|---|
| 17 | |
|---|
| 18 | $(BASE).obj: $(BASE).c |
|---|
| 19 | |
|---|
| 20 | !include makefile_post.mk |
|---|
| 21 | |
|---|
| 22 | # The end |
|---|