File: Makefile.in

package info (click to toggle)
ipfm 0.11.5-4.3
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 356 kB
  • sloc: ansic: 1,148; yacc: 328; sh: 210; makefile: 148; lex: 130
file content (25 lines) | stat: -rw-r--r-- 353 bytes parent folder | download | duplicates (4)
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
#

include ../../Makefile.common

CC=@CC@
CFLAGS=@CFLAGS@
CPPFLAGS=@CPPFLAGS@ -I. -I.. -I$(srcdir) -I$(srcdir)/..
AR=@AR@
RANLIB=@RANLIB@

SRCS=strlcpy.c strlcat.c daemon.c
OBJS=$(SRCS:.c=.o)

.c.o:
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $<

all: libmissing.a

libmissing.a: ../config.h $(OBJS)
	$(AR) rv $@ $(OBJS)
	$(RANLIB) $@

clean:
	rm -f *.o *.a core