File: Makefile

package info (click to toggle)
linux-ftpd 0.17-20sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 324 kB
  • ctags: 189
  • sloc: ansic: 2,586; yacc: 1,148; makefile: 94; sh: 22
file content (18 lines) | stat: -rw-r--r-- 253 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
include ../MCONFIG

OBJS=setproctitle.o isexpired.o vis.o

all: libsupport.a

%.o: %.c
	$(CC) $(CFLAGS) -DHASSETPROCTITLE $< -c

libsupport.a: $(OBJS)
	ar -cruv $@ $^
	ranlib $@

install: ;
clean:
	rm -f *.o libsupport.a

setproctitle.o: setproctitle.h