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 (17 lines) | stat: -rw-r--r-- 438 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
LIB    = libgloutil.lib
CC     = bcc32
AR     = tlib
CFLAGS = -I../libutil -I../libdb -I../libregex -I../machine -I../win32
OBJS   = usable.obj gtagsop.obj getdbpath.obj find.obj defined.obj \
	 conf.obj tab.obj strmake.obj pathop.obj mgets.obj makepath.obj \
	 locatestring.obj dbop.obj test.obj token.obj strbuf.obj path.obj

all: $(LIB)

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