From e140dbb1e7b6a8aff9b5dadc8ca793acf282f7ee Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 13 Aug 2009 19:41:33 +0000 Subject: [PATCH] Preparing the 0.0.1 release --- Makefile | 2 +- config.h | 2 +- project.conf | 2 +- src/applets/Makefile | 8 ++++---- src/applets/project.conf | 11 +++++++++++ 5 files changed, 18 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index cca5057..0127fe6 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PACKAGE = Panel -VERSION = 0.0.0 +VERSION = 0.0.1 SUBDIRS = include src RM = rm -f LN = ln -f diff --git a/config.h b/config.h index 3f74f95..b5561da 100644 --- a/config.h +++ b/config.h @@ -1,5 +1,5 @@ #define PACKAGE "Panel" -#define VERSION "0.0.0" +#define VERSION "0.0.1" #ifndef PREFIX # define PREFIX "/usr/local" diff --git a/project.conf b/project.conf index c1caaa4..7aa4d25 100644 --- a/project.conf +++ b/project.conf @@ -1,5 +1,5 @@ package=Panel -version=0.0.0 +version=0.0.1 config=h subdirs=include,src diff --git a/src/applets/Makefile b/src/applets/Makefile index 8802ffb..9427812 100644 --- a/src/applets/Makefile +++ b/src/applets/Makefile @@ -81,10 +81,10 @@ tasks_LDFLAGS = $(LDFLAGSF) $(LDFLAGS) tasks.so: $(tasks_OBJS) $(LD) -o tasks.so $(tasks_OBJS) -clock.o: clock.c +clock.o: clock.c ../../config.h $(CC) $(clock_CFLAGS) -c clock.c -cpu.o: cpu.c +cpu.o: cpu.c ../../config.h $(CC) $(cpu_CFLAGS) -c cpu.c desktop.o: desktop.c @@ -99,13 +99,13 @@ logout.o: logout.c main.o: main.c $(CC) $(main_CFLAGS) -c main.c -memory.o: memory.c +memory.o: memory.c ../../config.h $(CC) $(memory_CFLAGS) -c memory.c pager.o: pager.c $(CC) $(pager_CFLAGS) -c pager.c -tasks.o: tasks.c +tasks.o: tasks.c ../../config.h $(CC) $(tasks_CFLAGS) -c tasks.c clean: diff --git a/src/applets/project.conf b/src/applets/project.conf index a8a7409..db2131a 100644 --- a/src/applets/project.conf +++ b/src/applets/project.conf @@ -9,12 +9,17 @@ type=plugin sources=clock.c install=$(LIBDIR)/Panel/applets +[clock.c] +depends=../../config.h [cpu] type=plugin sources=cpu.c install=$(LIBDIR)/Panel/applets +[cpu.c] +depends=../../config.h + [desktop] type=plugin sources=desktop.c @@ -41,6 +46,9 @@ type=plugin sources=memory.c install=$(LIBDIR)/Panel/applets +[memory.c] +depends=../../config.h + [pager] type=plugin sources=pager.c @@ -50,3 +58,6 @@ install=$(LIBDIR)/Panel/applets type=plugin sources=tasks.c install=$(LIBDIR)/Panel/applets + +[tasks.c] +depends=../../config.h