diff --git a/Makefile b/Makefile index ac31acf..e4a3bae 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ dist: $(RM) -r $(PACKAGE)-$(VERSION) $(LN) -s . $(PACKAGE)-$(VERSION) @$(TAR) $(PACKAGE)-$(VERSION).tar.gz \ - $(PACKAGE)-$(VERSION)/include/panel.h \ + $(PACKAGE)-$(VERSION)/include/Panel.h \ $(PACKAGE)-$(VERSION)/include/Makefile \ $(PACKAGE)-$(VERSION)/include/project.conf \ $(PACKAGE)-$(VERSION)/src/panel.c \ diff --git a/include/Makefile b/include/Makefile index 452bda5..56e95a0 100644 --- a/include/Makefile +++ b/include/Makefile @@ -15,9 +15,9 @@ distclean: clean install: all $(MKDIR) $(DESTDIR)$(INCLUDEDIR) - $(INSTALL) -m 0644 panel.h $(DESTDIR)$(INCLUDEDIR)/panel.h + $(INSTALL) -m 0644 Panel.h $(DESTDIR)$(INCLUDEDIR)/Panel.h uninstall: - $(RM) $(DESTDIR)$(INCLUDEDIR)/panel.h + $(RM) $(DESTDIR)$(INCLUDEDIR)/Panel.h .PHONY: all clean distclean install uninstall diff --git a/include/panel.h b/include/Panel.h similarity index 100% rename from include/panel.h rename to include/Panel.h diff --git a/include/project.conf b/include/project.conf index 2e035b4..9e9d585 100644 --- a/include/project.conf +++ b/include/project.conf @@ -1,2 +1,2 @@ -includes=panel.h +includes=Panel.h dist=Makefile diff --git a/src/Makefile b/src/Makefile index cec331a..42035a1 100644 --- a/src/Makefile +++ b/src/Makefile @@ -27,7 +27,7 @@ panel_LDFLAGS = $(LDFLAGSF) $(LDFLAGS) panel: $(panel_OBJS) $(CC) -o panel $(panel_OBJS) $(panel_LDFLAGS) -panel.o: panel.c common.h ../include/panel.h +panel.o: panel.c common.h ../include/Panel.h $(CC) $(panel_CFLAGS) -c panel.c main.o: main.c common.h diff --git a/src/applets/Makefile b/src/applets/Makefile index 2dff107..ddac02a 100644 --- a/src/applets/Makefile +++ b/src/applets/Makefile @@ -88,34 +88,34 @@ tasks_LDFLAGS = $(LDFLAGSF) $(LDFLAGS) tasks.so: $(tasks_OBJS) $(LD) -o tasks.so $(tasks_OBJS) -battery.o: battery.c ../../include/panel.h +battery.o: battery.c ../../include/Panel.h $(CC) $(battery_CFLAGS) -c battery.c -clock.o: clock.c ../../include/panel.h +clock.o: clock.c ../../include/Panel.h $(CC) $(clock_CFLAGS) -c clock.c -cpu.o: cpu.c ../../include/panel.h +cpu.o: cpu.c ../../include/Panel.h $(CC) $(cpu_CFLAGS) -c cpu.c -desktop.o: desktop.c ../../include/panel.h +desktop.o: desktop.c ../../include/Panel.h $(CC) $(desktop_CFLAGS) -c desktop.c -lock.o: lock.c ../../include/panel.h +lock.o: lock.c ../../include/Panel.h $(CC) $(lock_CFLAGS) -c lock.c -logout.o: logout.c ../../include/panel.h +logout.o: logout.c ../../include/Panel.h $(CC) $(logout_CFLAGS) -c logout.c -main.o: main.c ../../include/panel.h +main.o: main.c ../../include/Panel.h $(CC) $(main_CFLAGS) -c main.c -memory.o: memory.c ../../include/panel.h +memory.o: memory.c ../../include/Panel.h $(CC) $(memory_CFLAGS) -c memory.c -pager.o: pager.c ../../include/panel.h +pager.o: pager.c ../../include/Panel.h $(CC) $(pager_CFLAGS) -c pager.c -tasks.o: tasks.c ../../include/panel.h +tasks.o: tasks.c ../../include/Panel.h $(CC) $(tasks_CFLAGS) -c tasks.c clean: diff --git a/src/applets/battery.c b/src/applets/battery.c index 42e2055..1061fe1 100644 --- a/src/applets/battery.c +++ b/src/applets/battery.c @@ -28,7 +28,7 @@ # include # include #endif -#include "panel.h" +#include "Panel.h" /* Battery */ diff --git a/src/applets/clock.c b/src/applets/clock.c index 36ea1c9..28934b9 100644 --- a/src/applets/clock.c +++ b/src/applets/clock.c @@ -20,7 +20,7 @@ #include #include #include -#include "panel.h" +#include "Panel.h" /* Clock */ diff --git a/src/applets/cpu.c b/src/applets/cpu.c index e2010c9..d388319 100644 --- a/src/applets/cpu.c +++ b/src/applets/cpu.c @@ -23,7 +23,7 @@ #ifdef __NetBSD__ # include #endif -#include "panel.h" +#include "Panel.h" /* Cpu */ diff --git a/src/applets/desktop.c b/src/applets/desktop.c index 5cf23e1..d97281b 100644 --- a/src/applets/desktop.c +++ b/src/applets/desktop.c @@ -18,7 +18,7 @@ #include #include #include -#include "panel.h" +#include "Panel.h" /* Desktop */ diff --git a/src/applets/lock.c b/src/applets/lock.c index 109d696..4ae0d86 100644 --- a/src/applets/lock.c +++ b/src/applets/lock.c @@ -15,7 +15,7 @@ -#include "panel.h" +#include "Panel.h" /* Lock */ diff --git a/src/applets/logout.c b/src/applets/logout.c index ebee669..845db4a 100644 --- a/src/applets/logout.c +++ b/src/applets/logout.c @@ -15,7 +15,7 @@ -#include "panel.h" +#include "Panel.h" /* Lock */ diff --git a/src/applets/main.c b/src/applets/main.c index bfba113..96dee5b 100644 --- a/src/applets/main.c +++ b/src/applets/main.c @@ -21,7 +21,7 @@ #include #include #include -#include "panel.h" +#include "Panel.h" /* Main */ diff --git a/src/applets/memory.c b/src/applets/memory.c index 36d7e32..5014465 100644 --- a/src/applets/memory.c +++ b/src/applets/memory.c @@ -22,7 +22,7 @@ #ifdef __NetBSD__ # include #endif -#include "panel.h" +#include "Panel.h" /* Memory */ diff --git a/src/applets/pager.c b/src/applets/pager.c index 75a7233..72b543c 100644 --- a/src/applets/pager.c +++ b/src/applets/pager.c @@ -19,7 +19,7 @@ #include #include #include -#include "panel.h" +#include "Panel.h" /* Pager */ diff --git a/src/applets/project.conf b/src/applets/project.conf index a4505a1..aedce86 100644 --- a/src/applets/project.conf +++ b/src/applets/project.conf @@ -10,7 +10,7 @@ sources=battery.c install=$(LIBDIR)/Panel/applets [battery.c] -depends=../../include/panel.h +depends=../../include/Panel.h [clock] type=plugin @@ -18,7 +18,7 @@ sources=clock.c install=$(LIBDIR)/Panel/applets [clock.c] -depends=../../include/panel.h +depends=../../include/Panel.h [cpu] type=plugin @@ -26,7 +26,7 @@ sources=cpu.c install=$(LIBDIR)/Panel/applets [cpu.c] -depends=../../include/panel.h +depends=../../include/Panel.h [desktop] type=plugin @@ -34,7 +34,7 @@ sources=desktop.c install=$(LIBDIR)/Panel/applets [desktop.c] -depends=../../include/panel.h +depends=../../include/Panel.h [lock] type=plugin @@ -42,7 +42,7 @@ sources=lock.c install=$(LIBDIR)/Panel/applets [lock.c] -depends=../../include/panel.h +depends=../../include/Panel.h [logout] type=plugin @@ -50,7 +50,7 @@ sources=logout.c install=$(LIBDIR)/Panel/applets [logout.c] -depends=../../include/panel.h +depends=../../include/Panel.h [main] type=plugin @@ -59,7 +59,7 @@ cppflags=-D PREFIX=\"$(PREFIX)\" install=$(LIBDIR)/Panel/applets [main.c] -depends=../../include/panel.h +depends=../../include/Panel.h [memory] type=plugin @@ -67,7 +67,7 @@ sources=memory.c install=$(LIBDIR)/Panel/applets [memory.c] -depends=../../include/panel.h +depends=../../include/Panel.h [pager] type=plugin @@ -75,7 +75,7 @@ sources=pager.c install=$(LIBDIR)/Panel/applets [pager.c] -depends=../../include/panel.h +depends=../../include/Panel.h [tasks] type=plugin @@ -83,4 +83,4 @@ sources=tasks.c install=$(LIBDIR)/Panel/applets [tasks.c] -depends=../../include/panel.h +depends=../../include/Panel.h diff --git a/src/applets/tasks.c b/src/applets/tasks.c index 681775c..16edeb3 100644 --- a/src/applets/tasks.c +++ b/src/applets/tasks.c @@ -21,7 +21,7 @@ #include #include #include -#include "panel.h" +#include "Panel.h" /* Tasks */ diff --git a/src/panel.c b/src/panel.c index adbd809..2420e45 100644 --- a/src/panel.c +++ b/src/panel.c @@ -22,7 +22,7 @@ #include #include #include -#include "panel.h" +#include "Panel.h" #include "common.h" #include "../config.h" diff --git a/src/project.conf b/src/project.conf index 695f3d2..2384c8f 100644 --- a/src/project.conf +++ b/src/project.conf @@ -16,4 +16,4 @@ install=$(BINDIR) depends=common.h [panel.c] -depends=common.h,../include/panel.h +depends=common.h,../include/Panel.h