head 1.2; access; symbols; locks; strict; comment @# @; 1.2 date 2005.01.21.04.00.33; author cworth; state Exp; branches; next 1.1; 1.1 date 2005.01.21.03.07.56; author cworth; state Exp; branches; next ; desc @@ 1.2 log @Added the rest of the missing source files. Fixed Makefile so fdclock actually builds now. @ text @WARN_FLAGS=-g -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls CFLAGS=${WARN_FLAGS} `pkg-config --cflags cairo` LDFLAGS=${WARN_FLAGS} `pkg-config --libs cairo` all: fdclock fdface.o: fdface.c fdface.h fdhand.o: fdhand.c fdhand.h fdlogo.o: fdlogo.c fdlogo.h fdclock: main.o fdface.o fdhand.o fdlogo.o ${CC} ${LDFLAGS} -o $@@ $^ -framework Carbon clean: rm -f fdclock *.o @ 1.1 log @Added missing header files. Add Makefile. @ text @d1 3 a3 2 CFLAGS+=-g -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls `pkg-config --cflags cairo` LDFLAGS+=`pkg-config --libs cairo` d7 1 a7 1 fdclock: main.o d9 6 a14 1 main.o: main.c fdface.h fdhand.h fdlogo.h d17 1 a17 2 rm -f fdclock @