File: Makefile

package info (click to toggle)
linux-ftpd-ssl 0.17.36%2Breally0.17-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,524 kB
  • sloc: ansic: 3,875; yacc: 1,379; sh: 52; makefile: 50
file content (19 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (14)
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