Files
asterisk/stdtime/Makefile
2003-09-13 20:51:48 +00:00

20 lines
212 B
Makefile
Executable File

CC=gcc
#CFLAGS=-Wall
INCLUDE=-I../include
all: localtime.o
clean::
rm -f localtime.o test
depend::
@echo "Nothing to do for depend"
test: test.c
${CC} ${CFLAGS} -o test test.c
localtime.o: localtime.c