File: Makefile

package info (click to toggle)
xlispstat 3.52.14-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 7,560 kB
  • ctags: 12,676
  • sloc: ansic: 91,357; lisp: 21,759; sh: 1,525; makefile: 521; csh: 1
file content (17 lines) | stat: -rw-r--r-- 250 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CC=gcc
CFLAGS=-g -I. -DPOSIX_MISTAKE
AR=ar
RANLIB=ranlib

SRCS=	regcomp.c regerror.c regexec.c regfree.c

OBJ=	regcomp.o regerror.o regexec.o regfree.o

LIB=	libregex.a

$(LIB):	$(OBJ)
	$(AR) cr $(LIB) $(OBJ)
	$(RANLIB) $(LIB)

clean:
	rm -f *.o *.a