File: Makefile

package info (click to toggle)
sockstat 0.3-2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 116 kB
  • ctags: 111
  • sloc: ansic: 779; makefile: 25
file content (16 lines) | stat: -rw-r--r-- 221 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
SRCS = sockstat.c
OBJS = ${SRCS:.c=.o}

sockstat: ${OBJS}
	cc -o $@ $(LDFLAGS) ${OBJS}

install:
	install -m 755 -c sockstat ${DESTDIR}/usr/bin

clean:
	rm -f *.o sockstat

distclean: clean

all: sockstat
build: sockstat