mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
15 lines
368 B
Text
15 lines
368 B
Text
|
# Makefile for building db_sql generated code on Windows.
|
||
|
|
||
|
!include <win32.mak>
|
||
|
|
||
|
bdb_dir = "../../build_windows"
|
||
|
|
||
|
all: sample.exe
|
||
|
|
||
|
.c.obj:
|
||
|
$(cc) $(cdebug) $(cflags) $(cvars) /I$(bdb_dir) $*.c
|
||
|
|
||
|
sample.exe: sample.obj sample_verify.obj
|
||
|
$(link) $(ldebug) $(conflags) -out:sample.exe sample.obj sample_verify.obj $(conlibs) /LIBPATH:$(bdb_dir)/Win32/Debug libdb48d.lib
|
||
|
|