chiark / gitweb /
[PATCH] udev parse bug
[elogind.git] / extras / volume_id / Makefile
index 6a3d2866c414ff7f325de3756668f4d060fc41b6..8813f9fca548dcdf9975519905bd24269a860305 100644 (file)
@@ -1,6 +1,6 @@
 # Makefile for udev_volume_id
 #
-# Copyright (C) 2004 Kay Sievers <kay@vrfy.org>
+# Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -28,9 +28,24 @@ INSTALL_PROGRAM = ${INSTALL}
 INSTALL_DATA  = ${INSTALL} -m 644
 INSTALL_SCRIPT = ${INSTALL_PROGRAM}
 
-override CFLAGS+=-Wall -fno-builtin
-OBJS = volume_id.o udev_volume_id.o
-HEADERS = volume_id.h
+override CFLAGS+=-Wall -fno-builtin -Wchar-subscripts -Wmissing-declarations \
+                -Wnested-externs -Wpointer-arith -Wcast-align \
+                -Wsign-compare
+
+override CFLAGS+=-D_FILE_OFFSET_BITS=64
+
+SYSFS =        ../../libsysfs/sysfs_bus.o      \
+       ../../libsysfs/sysfs_class.o    \
+       ../../libsysfs/sysfs_device.o   \
+       ../../libsysfs/sysfs_dir.o      \
+       ../../libsysfs/sysfs_driver.o   \
+       ../../libsysfs/sysfs_utils.o    \
+       ../../libsysfs/dlist.o
+
+
+
+OBJS = volume_id.o udev_volume_id.o dasdlabel.o $(SYSFS)
+HEADERS = volume_id.h dasdlabel.h
 
 $(OBJS): $(HEADERS)