• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/test/scr038/
1# Makefile for building db_sql generated code on Windows.
2
3!include <win32.mak>
4
5bdb_dir = "../../build_windows"
6
7all: sample.exe
8
9.c.obj:
10	$(cc) $(cdebug) $(cflags) $(cvars) /I$(bdb_dir) $*.c
11
12sample.exe: sample.obj sample_verify.obj
13	$(link) $(ldebug) $(conflags) -out:sample.exe sample.obj sample_verify.obj $(conlibs) /LIBPATH:$(bdb_dir)/Win32/Debug libdb48d.lib
14
15