File: Makefile

package info (click to toggle)
sockstat 0.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 124 kB
  • sloc: ansic: 640; makefile: 14; sh: 13
file content (16 lines) | stat: -rw-r--r-- 234 bytes parent folder | download | duplicates (2)
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) $(CFLAGS) -o $@ $(LDFLAGS) ${OBJS}

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

clean:
	rm -f *.o sockstat

distclean: clean

all: sockstat
build: sockstat