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 (15 lines) | stat: -rw-r--r-- 268 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
LIB    = libgloregex.lib
CC     = bcc32
AR     = tlib
CFLAGS = -I../libdb -I../machine -I../win32
OBJS   = regcomp.obj regerror.obj regexec.obj regfree.obj

all: $(LIB)

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