source: trunk/tools/database/mysql/Makefile@ 10367

Last change on this file since 10367 was 9876, checked in by sandervl, 22 years ago

KSO: makefile updates

File size: 728 bytes
Line 
1# $Id: Makefile,v 1.3 2003-02-28 10:31:35 sandervl Exp $
2
3#
4# Odin32 API
5#
6# support libraries makefile
7#
8
9
10#
11# Include makefile.
12#
13!include ../../../makefile.inc
14
15
16#
17# All rule.
18#
19all: $(ODIN32_LIB) \
20 $(ODIN32_LIB)\mysql.lib \
21
22
23#
24# Make output director.
25#
26$(ODIN32_LIB):
27 @if not exist $(ODIN32_LIB) mkdir $(ODIN32_LIB)
28
29
30#
31# Make our own mysql import library.
32#
33$(ODIN32_LIB)\mysql.lib: mysql.def
34 $(IMPLIB) $(IMPLIBFLAGS) $(ODIN32_LIB)\mysql.lib mysql.def
35
36
37#
38# Make our own libuls import library.
39#
40clean cleanall:
41 $(RM) $(ODIN32_LIB)\mysql.lib
42
43
44
45#
46# Dummy rules.
47#
48dep lib:
49
50
51#
52# Nothing rule used for makefile debugging.
53#
54nothing:
55 @echo Did nothing with makefile $(MAKEDIR)\$(MAKEFILE)
56
Note: See TracBrowser for help on using the repository browser.