File: Makefile

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

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

clean:
	rm ether-wake
	
install:
	$(INSTALL) ether-wake $(DESTDIR)/usr/sbin