X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=extras%2Fvolume_id%2FMakefile;h=8813f9fca548dcdf9975519905bd24269a860305;hb=a75e2c14f9bc098966f39f26358e6de4dc167192;hp=6a3d2866c414ff7f325de3756668f4d060fc41b6;hpb=3611d5820c0fc0863d15c04884b05c9e04492f45;p=elogind.git diff --git a/extras/volume_id/Makefile b/extras/volume_id/Makefile index 6a3d2866c..8813f9fca 100644 --- a/extras/volume_id/Makefile +++ b/extras/volume_id/Makefile @@ -1,6 +1,6 @@ # Makefile for udev_volume_id # -# Copyright (C) 2004 Kay Sievers +# Copyright (C) 2004 Kay Sievers # # 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)