File: Makefile

package info (click to toggle)
etherwake 1.09-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 64 kB
  • ctags: 19
  • sloc: ansic: 290; makefile: 54; sh: 44
file content (12 lines) | stat: -rw-r--r-- 178 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
CFLAGS 	= -Wall
INSTALL = /usr/bin/install
CC 	= gcc

all: 
	$(CC) $(CFLAGS) -o etherwake ether-wake.c

clean:
	rm etherwake
	
install:
	$(INSTALL) etherwake $(DESTDIR)/usr/sbin