source: trunk/include/pdwin32.tools@ 2900

Last change on this file since 2900 was 2900, checked in by bird, 26 years ago

* empty log message *

File size: 758 bytes
Line 
1# $Id: pdwin32.tools,v 1.6 2000-02-26 13:27:51 bird Exp $
2# ODIN / win32os2 Project
3#
4# makefile for the build system tools and standard rules
5# Note: this has to be included after the compiler environment
6#
7# phaller@gmx.net, 1999/05/27
8#
9
10
11#
12# System Utilites
13#
14RM = rm -f
15CP = copy
16MKDIR = mkdir
17ECHO = echo
18IMPDEF = $(PDWIN32_TOOLS)\impdef.exe
19DEPEND = $(PDWIN32_TOOLS)\fastdep.exe
20DOWITHDIRS = $(PDWIN32_TOOLS)\dowithdirs.cmd
21!ifdef DEBUG
22!ifdef NODEBUGINFO
23MAKE_CMD=nmake /nologo DEBUG=1 NODEBUGINFO=1
24!else
25MAKE_CMD=nmake /nologo DEBUG=1
26!endif
27!else
28MAKE_CMD=nmake /nologo
29!endif
30
31
32#
33# Targets
34#
35.c.obj:
36 $(CC) $(CFLAGS) -c $<
37
38.cpp.obj:
39 $(CXX) $(CXXFLAGS) -c $<
40
41.asm.obj:
42 $(AS) $(ASFLAGS) $<
43
44
45
Note: See TracBrowser for help on using the repository browser.