blob: 59926c856b2c75c52cd01ad9c16a6a01fb689690 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 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
|