source: trunk/src/dllentry/makefile@ 3003

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

Dependencies (again).

File size: 744 bytes
Line 
1# $Id: makefile,v 1.3 2000-02-09 23:46:55 bird Exp $
2
3#
4# PD-Win32 API
5#
6# dllentry library makefile
7#
8
9PDWIN32_INCLUDE = ..\..\include
10PDWIN32_LIB = ..\..\lib
11PDWIN32_BIN = ..\..\bin
12PDWIN32_TOOLS = ..\..\tools\bin
13
14!include $(PDWIN32_INCLUDE)/pdwin32.mk
15
16
17CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE)
18CXXFLAGS = $(CXXFLAGS) -I$(PDWIN32_INCLUDE)
19
20
21TARGET = dllentry
22
23all: $(PDWIN32_LIB)\$(TARGET).obj
24
25$(PDWIN32_LIB)\$(TARGET).obj: dllentry.obj
26 $(CP) $(TARGET).obj $(PDWIN32_LIB)
27
28lib: $(PDWIN32_LIB)\$(TARGET).obj
29
30dep:
31 $(DEPEND) -I$(PDWIN32_INCLUDE);$(PDWIN32_INCLUDE)\win \
32 *.c *.cpp *.h *.asm *.inc $(PDWIN32_INCLUDE)\*.h
33
34!ifndef NODEP
35!include .depend
36!endif
37
38
39clean:
40 $(RM) *.obj $(PDWIN32_LIB)\$(TARGET).obj *.pch
41
Note: See TracBrowser for help on using the repository browser.