mirror of
https://github.com/asterisk/asterisk.git
synced 2026-05-03 20:06:24 +00:00
20 lines
212 B
Makefile
20 lines
212 B
Makefile
|
|
|
||
|
|
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
|
||
|
|
|
||
|
|
|