summaryrefslogtreecommitdiffstats
path: root/contrib/global/lib/Makefile.generic
blob: 2cd87fbd2e21387280770064604ee8358b28ce09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
LIB    = libutil.a
CC     = gcc
AR     = ar
CFLAGS = -O -I../lib -I/usr/include/db
OBJS   = tag.o tab.o strop.o mgets.o lookup.o gtagsopen.o getdbpath.o \
	 find.o dbname.o dbio.o test.o makepath.o locatestring.o
all: $(LIB)

$(LIB): $(OBJS)
	$(AR) cq $(LIB) $(OBJS)
install:
	@echo -n
clean:
	rm -f $(LIB) $(OBJS)
OpenPOWER on IntegriCloud