You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asterisk/stdtime/Makefile

20 lines
212 B

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