source: trunk/src/opengl/glide/makefile@ 3028

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

We don't have to set NODEP=1 when making dep for subdirectories.
It's a part of the MAKE_CMD macro when initially defined.

File size: 710 bytes
Line 
1# $Id: makefile,v 1.3 2000-03-04 20:03:42 bird Exp $
2#
3# PD-Win32 API
4#
5# main glide makefile
6#
7
8PDWIN32_INCLUDE = ..\..\..\include
9PDWIN32_LIB = ..\..\..\lib
10PDWIN32_BIN = ..\..\..\bin
11PDWIN32_TOOLS = ..\..\..\tools\bin
12
13
14!include $(PDWIN32_INCLUDE)/pdwin32.mk
15
16TARGET1 = cvg\glide2x
17TARGET2 = sst1\glide2x
18
19all: $(TARGET1).dll $(TARGET2).dll
20lib: $(TARGET1).lib
21
22$(TARGET1).dll:
23 cd cvg
24 $(MAKE_CMD)
25 cd ..
26
27$(TARGET2).dll:
28 cd sst1
29 $(MAKE_CMD)
30 cd ..
31
32$(TARGET1).lib:
33 cd cvg
34 $(MAKE_CMD) $(@F)
35 cd ..
36
37clean:
38 cd cvg
39 $(MAKE_CMD) clean
40 cd ..\sst1
41 $(MAKE_CMD) clean
42 cd ..
43
44dep:
45 cd cvg
46 $(MAKE_CMD) dep
47 cd ..\sst1
48 $(MAKE_CMD) dep
49 cd ..
50
Note: See TracBrowser for help on using the repository browser.