13 lines
258 B
Makefile
13 lines
258 B
Makefile
|
# cnd Makefile
|
||
|
# (C)2005, Dan Ponte
|
||
|
include ../global.mk
|
||
|
# basic stuff. we append for a reason.
|
||
|
CPPFLAGS=-I../include
|
||
|
CFLAGS+=-g -Wall -W -ansi ${CPPFLAGS}
|
||
|
LDFLAGS=
|
||
|
# keep these up to date.
|
||
|
MAINBIN=phonectl
|
||
|
SRCS=phonectl.c
|
||
|
OBJS=phonectl.o
|
||
|
include ../main.mk
|