File: Makefile.w32

package info (click to toggle)
global 3.55-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,336 kB
  • ctags: 1,634
  • sloc: ansic: 12,863; perl: 1,670; lisp: 325; sh: 188; makefile: 95
file content (18 lines) | stat: -rw-r--r-- 388 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
LIB    = libglodb.lib
CC     = bcc32
AR     = tlib
CFLAGS = -I../machine -I../win32

OBJS=	bt_close.obj bt_conv.obj bt_debug.obj bt_delete.obj bt_get.obj \
	bt_open.obj bt_overflow.obj bt_page.obj bt_put.obj bt_search.obj \
	bt_seq.obj bt_split.obj bt_utils.obj mpool.obj db.obj

all: $(LIB)

$(LIB): $(OBJS)
	$(AR) $(LIB) @..\win32\dbobjs
install:
	@echo -n
clean:
	del *.lib
	del *.obj