]>
Commit | Line | Data |
---|---|---|
bbf1f0e5 KB |
1 | # |
2 | # File: makefile.b32 | |
3 | # Author: Andre Beltman | |
4 | # Created: 1995 | |
5 | # Updated: | |
6 | # Copyright: (c) 1995, AIAI, University of Edinburgh | |
7 | # | |
8 | # "%W% %G%" | |
9 | # | |
10 | # Makefile : Imports 32bit ctl3d library for Windows 95 | |
11 | # and Borland C++ 4.x | |
12 | ||
13 | WXDIR = $(WXWIN) | |
14 | WXLIB = $(WXDIR)\lib | |
15 | ||
16 | LIBTARGET= $(WXLIB)\ctl3d32.lib | |
17 | ||
18 | all: $(LIBTARGET) | |
19 | ||
20 | $(LIBTARGET): | |
21 | erase $(LIBTARGET) | |
22 | implib $(LIBTARGET) ..\ctl3d32.dll | |
23 | ||
24 | clean: | |
25 | -erase $(LIBTARGET) |