diff options
| author | Michael Stapelberg | 2009-01-25 23:18:25 +0100 | 
|---|---|---|
| committer | Michael Stapelberg | 2009-01-25 23:18:25 +0100 | 
| commit | bbd9e7f85d2ac1d88ccb7e847c534abae36bc46a (patch) | |
| tree | 63214d29a6b517505a23a6d1a98f3c4b8858b640 /Makefile | |
| parent | Simplify config file parsing *a lot* (diff) | |
Move configuration file parsing into wmiistatus.c, saves a lot of hassle/SLOC/files
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 | 
1 files changed, 3 insertions, 4 deletions
| @@ -1,4 +1,4 @@ -CFLAGS+=-Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare +CFLAGS+=-Wall -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare  CFLAGS+=-g  CFLAGS+=-DPREFIX=\"\" @@ -6,7 +6,7 @@ ifeq ($(shell uname),Linux)  CFLAGS+=-DLINUX  endif -wmiistatus: wmiistatus.o wmiistatus.h config.h config.o +wmiistatus: wmiistatus.o wmiistatus.h  clean:  	rm -f *.o @@ -24,7 +24,6 @@ install:  	install -m 644 wmiistatus.1 $(DESTDIR)/usr/share/man/man1  release: -	tar cf wmiistatus.tar *.c *.h *.1 *.conf *.init Makefile -	bzip2 -9 wmiistatus.tar +	tar cjf wmiistatus.tar.bz2 *.c *.h *.1 *.conf *.init Makefile  all: wmiistatus | 
