mirror of
https://github.com/asterisk/asterisk.git
synced 2026-01-03 21:14:27 +00:00
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1506 65c4cc65-6c06-0410-ace0-fbb531ad65f3
20 lines
212 B
Makefile
Executable File
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
|
|
|
|
|