Change behavior of printing settings
[wmlaptop2.git] / Makefile
blob299c750ccce9b1222030fca3b200753239debd44
1 # modify this if you want/need
3 INSTALLDIR = /usr/local/bin/
4 CC = gcc
6 LIBDIR = -L/usr/X11R6/lib
7 LIBS = `pkg-config --libs dbus-1 --libs dbus-glib-1` -lXpm -lXext -lX11 -lXss
8 CFLAGS = `pkg-config --cflags dbus-1 --cflags dbus-glib-1` -Wall -g
9 OBJS = main.o init.o event.o draw.o battery.o cpu.o autoscript.o pixmap.o apple.o
10 EXE = wmlaptop2
13 export INSTALLDIR
14 export LIBDIR
15 export LIBS
16 export CFLAGS
17 export OBJS
18 export EXE
19 export CC
21 all:
22 cd src && make
24 clean:
25 cd src && make clean
27 install:
28 cd src && make install
29 ./.info
31 uninstall:
32 cd src && make uninstall
34 reall: clean all