#!/bin/sh
# makefile for cwbeacon

FLAGS=-O -Wall
#FLAGS=-O

INSTALL=/usr/local/bin

# Do not edit below
all: cwbeacon

cwbeacon: cwbeacon.c
	gcc ${FLAGS} -o cwbeacon cwbeacon.c

clean:
	rm -f cwbeacon *.o *~

install:
	install -o root -g root -m 0744 -s cwbeacon ${INSTALL}
	install -o root -g root -m 0744 cwoff ${INSTALL}
