File: Makefile

package info (click to toggle)
linux86 0.16.21-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,072 kB
  • sloc: ansic: 66,757; asm: 6,154; makefile: 1,374; sh: 703
file content (26 lines) | stat: -rw-r--r-- 597 bytes parent folder | download | duplicates (8)
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