summary refs log tree commit diff stats
path: root/src/common/notify.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2013-04-01 00:24:42 +0200
committerBerke Viktor <bviktor@hexchat.org>2013-04-01 00:24:42 +0200
commit4de6db6c47e45816364aee7a4fd0c2318d1ec934 (patch)
tree6e23cc2eb7dbddf65a67b07fb52975ffceb9743e /src/common/notify.c
parented9245add2dacf57977ef0d3fce73f4bb20f5a5d (diff)
Disable Unix path detection mechanism
Diffstat (limited to 'src/common/notify.c')
0 files changed, 0 insertions, 0 deletions
> 31 32 33 34 35 36 37 38











                                                              








                                                                                                  
                                                       















                                                      
#### SET THIS VALUE TO THE LOCATION OF THE `pci.ids` file ####
PCIIDS = /usr/share/misc/pci.ids

#### UNCOMMENT THIS IF YOU WANT THE BUTTONS ####
#BUTTON = -Dbuttonbar

#### SHOULD NOT NEED TO EDIT BELOW THIS LINE ####
VER_MAJOR = 2
VER_MINOR = 2
VER_PATCH = 0
CC = gcc
CFLAGS += -O2 -Wall -fPIC
CFLAGS += -DVER_MINOR=$(VER_MINOR) -DVER_MAJOR=$(VER_MAJOR) -DVER_PATCH=$(VER_PATCH) \
          -DVER_STRING=\"$(VER_MAJOR).$(VER_MINOR).$(VER_PATCH)\" -DPCIIDS=\"$(PCIIDS)\" $(BUTTON)
LDFLAGS = $(CFLAGS) -shared
LIBRARY = xsys-$(VER_MAJOR).$(VER_MINOR).$(VER_PATCH).so
OBJECTS = xsys.o parse.o pci.o match.o hwmon.o

ALL : $(LIBRARY)

$(LIBRARY) : $(OBJECTS)
	$(CC) $(LDFLAGS) -o $(LIBRARY) $(OBJECTS) -lpci

xsys.o : xsys.c
parse.o : parse.c
pci.o : pci.c
match.o : match.c
hwmon.o : hwmon.c

.PHONY : clean
clean :
	rm -rf *.o *.so *~

.PHONY : install
install : $(LIBRARY)
	rm -f $(HOME)/.xchat2/xsys-plugin.so
	cp ./$(LIBRARY) $(HOME)/.xchat2/xsys-plugin.so