File: Makefile

package info (click to toggle)
linux-ftpd-ssl 0.17.36%2B0.3-2.2
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 2,524 kB
  • sloc: ansic: 3,875; yacc: 1,379; sh: 52; makefile: 48
file content (19 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
include ../MCONFIG

OBJS=daemon.o 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
daemon.o: daemon.h