Changed the minor version to 3 for the conversion to pure C.
[breezed.git] / Makefile
index bb97644..ae15304 100644 (file)
--- a/Makefile
+++ b/Makefile
 #  You should have received a copy of the GNU General Public License
 #  along with breezed.  If not, see <http://www.gnu.org/licenses/>.
 
+BINARY_PATH = /usr/bin
+MAN_PATH = /usr/share/man/man1
+PM_SLEEPD = /usr/lib/pm-utils/sleep.d
+
+CFLAGS = -Wall -ansi -pedantic -DREVISION_NUMBER=$(REVISION_NUMBER) $(OPTIMIZE_FLAG)
+
 all: breezed
 
-breezed: breezed.cc
-       g++ -o breezed breezed.cc
+breezed: breezed.c
+       $(CC) -o $@ $^ $(LDFLAGS)
+
+install: breezed /etc/breezed.conf
+       install -m 755 breezed $(BINARY_PATH)
+       install -m 755 breezed.sh /etc/init.d/
+       install -m 644 breezed.1 $(MAN_PATH)
+       gzip $(MAN_PATH)/breezed.1
+       install -m 755 breezed-pm-utils.sh $(PM_SLEEPD)/50breezed
+       update-rc.d breezed.sh defaults
+       /etc/init.d/breezed.sh start
+
+uninstall:
+       /etc/init.d/breezed.sh stop
+       update-rc.d -f breezed.sh remove
+       rm $(PM_SLEEPD)/50breezed
+       rm $(MAN_PATH)/breezed.1.gz
+       rm /etc/init.d/breezed.sh
+       rm $(BINARY_PATH)/breezed
 
 clean:
        \rm -f breezed