File: Makefile

package info (click to toggle)
fdflush 1.0.1.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 32 kB
  • ctags: 12
  • sloc: makefile: 49; ansic: 38
file content (12 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
bindir=/bin
mandir=/usr/man

fdflush: fdflush.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o fdflush $<

install: fdflush fdflush.1
	install -o root -g root -m 755 fdflush $(prefix)$(bindir)/fdflush
	install -o root -g root -m 644 fdflush.8 $(prefix)$(mandir)/man8/

clean distclean:
	rm -f fdflush *.o