From b64fdbd4713de50b310664d11817075e4d81a5c7 Mon Sep 17 00:00:00 2001 From: Stephane Bortzmeyer Date: Mon, 5 Mar 2007 20:53:11 +0000 Subject: [PATCH] Files produced automatically removed from the repository --- SRC/contrib/daytime/Makefile | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 SRC/contrib/daytime/Makefile diff --git a/SRC/contrib/daytime/Makefile b/SRC/contrib/daytime/Makefile deleted file mode 100644 index fb80fa5..0000000 --- a/SRC/contrib/daytime/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -CCFLAGS=-Wall -O0 -g -fPIC -LDFLAGS=-shared - -OBJECTS=daytime.o - -all: daytime.so - -%.o: %.c - ${CC} ${CCFLAGS} -c -o $@ $< - -%.so: %.o - ${CC} ${LDFLAGS} -o $@ $< - -clean: - -rm -f *.o *.so - -.SECONDARY: ${OBJECTS}