Preparing the 0.0.1 release
This commit is contained in:
parent
3e19d90925
commit
e140dbb1e7
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
|||
PACKAGE = Panel
|
||||
VERSION = 0.0.0
|
||||
VERSION = 0.0.1
|
||||
SUBDIRS = include src
|
||||
RM = rm -f
|
||||
LN = ln -f
|
||||
|
|
2
config.h
2
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"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package=Panel
|
||||
version=0.0.0
|
||||
version=0.0.1
|
||||
config=h
|
||||
|
||||
subdirs=include,src
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user