File: Makefile.generic

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-- 395 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
LIB    = libgloutil.a
CC     = gcc
AR     = ar
CFLAGS = -O -I../libdb -I../libregex -I../machine
OBJS   = usable.o gtagsop.o getdbpath.o find.o defined.o conf.o tab.o \
	 strmake.o pathop.o mgets.o makepath.o locatestring.o dbop.o \
	 test.o token.o strbuf.o path.o

all: $(LIB)

$(LIB): $(OBJS)
	$(AR) cr $(LIB) $(OBJS)
install:
	@echo -n
cygwin_install:
	@echo -n
clean:
	rm -f $(LIB) $(OBJS)