Changeset 4712 for trunk/tools/dbginfo


Ignore:
Timestamp:
Dec 3, 2000, 12:27:03 AM (25 years ago)
Author:
bird
Message:

New makefile style.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/dbginfo/makefile

    r4131 r4712  
    1 # $Id: makefile,v 1.6 2000-08-31 03:05:05 bird Exp $
     1# $Id: makefile,v 1.7 2000-12-02 23:26:59 bird Exp $
     2
    23#
    34# Makefile for debug info convertes - experimental.
     5#   Don't bother to cleanup this mess yet.
    46#
    57# Copyright (c) 2000 knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
     
    1012
    1113# Directory macros.
    12 PDWIN32_INCLUDE = ..\..\include
    13 PDWIN32_LIB     = ..\..\lib
    14 PDWIN32_BIN     = ..\..\$(OBJDIR)
    15 PDWIN32_TOOLS   = ..\..\tools\bin
    16 PDWIN32_TCOMMON = ..\common
     14ODIN32_TCOMMON = ..\common
    1715
    1816
    1917# Compiler, tools, and interference rules.
    2018EXETARGET=1
    21 !include $(PDWIN32_INCLUDE)\pdwin32.mk
    22 !include $(PDWIN32_TCOMMON)\common.mk
     19OLD_STYLE=1
     20!include ../../makefile.inc
     21!include $(ODIN32_TCOMMON)\common.mk
    2322
    2423
    2524# Flag overloads and local macros.
    26 CINCLUDES  = -I$(PDWIN32_TCOMMON)
    27 
    28 CFLAGS     = $(CINCLUDES) $(CFLAGS) -DRING3 \
    29              -Ge+ -Wall+ppt-ppc-inl-cnv-gnr-vft-gen-uni-ext- -Gm- -Gn- -Ti+ -Rn -Tm-
    30 CXXFLAGS   = $(CINCLUDES) $(CXXFLAGS) -DRING3 \
    31              -Ge+ -Wall+ppt-ppc-inl-cnv-gnr-vft- -Gm- -Gn- -Ti+ -Gx -Rn -Tm-
     25CINCLUDES  = -I$(ODIN32_TCOMMON)
     26CFLAGS     = $(CFLAGS)   -Wall+ppt-ppc-inl-cnv-gnr-vft-gen-uni-ext- -Gm- -Ti+ -Tm-
     27CXXFLAGS   = $(CXXFLAGS) -Wall+ppt-ppc-inl-cnv-gnr-vft-             -Gm- -Ti+ -Tm- $(CXXEXCEPTIONS)
    3228
    3329
     
    6662
    6763
     64#
     65# Includes the common rules.
     66#
     67!include $(ODIN32_POST_INC)
     68!include $(ODIN32_TCOMMON_POST_INC)
    6869
    69 
    70 # Dep rule - makes depenencies for C, C++ and Asm files.
    71 # -o- removes the object directory - for the time being.
    72 dep:
    73     $(DEPEND) -o- -I$(PDWIN32_INCLUDE);$(PDWIN32_INCLUDE)\win; $(CINCLUDES) \
    74         *.c *.cpp *.h *.asm *.inc $(PDWIN32_INCLUDE)\*.h
    75 
    76 
    77 # Includes the common rules.
    78 !include $(PDWIN32_INCLUDE)\pdwin32.post
    79 !include $(PDWIN32_TCOMMON)\common.mk.post
    80 
    81 
Note: See TracChangeset for help on using the changeset viewer.