summaryrefslogtreecommitdiff
path: root/libc/regexp/Makefile
blob: a5ad0d847183cb13b9598572c405ac6d26202c3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

OBJ=regexp.o regsub.o
LSRC=regexp.c regsub.c regerror.c

CFLAGS=$(ARCH) $(CCFLAGS) $(DEFS)

all: $(LIBC)
	@$(RM) $(OBJ)

$(LIBC): $(LIBC)($(OBJ))

transfer:
	-@rm -f ../include/regexp.h ../include/regmagic.h
	cp -p regexp.h regmagic.h ../include/.

$(LIBC)(regexp.o):	regexp.c regexp.h regmagic.h
	$(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
	$(AR) $(ARFLAGS) $@ $*.o

$(LIBC)(regsub.o):	regsub.c regexp.h regmagic.h
	$(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
	$(AR) $(ARFLAGS) $@ $*.o

clean:
	rm -f libc.a *.o core mon.out timer.t.h dMakefile dtr try timer
	rm -f ../include/regexp.h ../include/regmagic.h