about summary refs log tree commit diff stats
path: root/Makefile
blob: 2ce71ccfbdab8d44b0d63403b830d645e5b3bd93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# dwm - dynamic window manager
#   (C)opyright MMVII Anselm R. Garbe

include config.mk

SRC = client.c draw.c event.c main.c tag.c util.c view.c
OBJ = ${SRC:.c=.o}

all: options dwm

options:
	@echo dwm build options:
	@echo "CFLAGS   = ${CFLAGS}"
	@echo "LDFLAGS  = ${LDFLAGS}"
	@echo "CC       = ${CC}"
	@echo "LD       = ${LD}"

.c.o:
	@echo CC $<
	@${CC} -c ${CFLAGS} $<

${OBJ}: dwm.h config.h config.mk

config.h:
	@echo creating $@ from config.default.h
	@cp config.default.h $@

dwm: ${OBJ}
	@echo LD $@
	@${LD} -o $@ ${OBJ} ${LDFLAGS}
	@strip $@

clean:
	@echo cleaning
	@rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz

dist: clean
	@echo creating dist tarball
	@mkdir -p dwm-${VERSION}
	@cp -R LICENSE Makefile README config.*.h config.mk \
		dwm.1 dwm.h ${SRC} dwm-${VERSION}
	@tar -cf dwm-${VERSION}.tar dwm-${VERSION}
	@gzip dwm-${VERSION}.tar
	@rm -rf dwm-${VERSION}

install: all
	@echo installing executable file to ${DESTDIR}${PREFIX}/bin
	@mkdir -p ${DESTDIR}${PREFIX}/bin
	@cp -f dwm ${DESTDIR}${PREFIX}/bin
	@chmod 755 ${DESTDIR}${PREFIX}/bin/dwm
	@echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
	@mkdir -p ${DESTDIR}${MANPREFIX}/man1
	@sed 's/VERSION/${VERSION}/g' < dwm.1 > ${DESTDIR}${MANPREFIX}/man1/dwm.1
	@chmod 644 ${DESTDIR}${MANPREFIX}/man1/dwm.1

uninstall:
	@echo removing executable file from ${DESTDIR}${PREFIX}/bin
	@rm -f ${DESTDIR}${PREFIX}/bin/dwm
	@echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
	@rm -f ${DESTDIR}${MANPREFIX}/man1/dwm.1

.PHONY: all options clean dist install uninstall
="kt">void prof_on_disconnect(const char * const account_name, const char * const fulljid); /** Called before a chat message is displayed @param barejid Jabber ID of the message sender @param resource resource of the message sender @param message the received message @return the new message to display, or NULL to preserve the original message */ char* prof_pre_chat_message_display(const char * const barejid, const char *const resource, const char *message); /** Called after a chat message is displayed @param barejid Jabber ID of the message sender @param resource resource of the message sender @param message the received message */ void prof_post_chat_message_display(const char * const barejid, const char *const resource, const char *message); /** Called before a chat message is sent @param barejid Jabber ID of the message recipient @param message the message to be sent @return the modified or original message to send, or NULL to cancel sending of the message */ char* prof_pre_chat_message_send(const char * const barejid, const char *message); /** Called after a chat message has been sent @param barejid Jabber ID of the message recipient @param message the sent message */ void prof_post_chat_message_send(const char * const barejid, const char *message); /** Called before a chat room message is displayed @param barejid Jabber ID of the room @param nick nickname of message sender @param message the received message @return the new message to display, or NULL to preserve the original message */ char* prof_pre_room_message_display(const char * const barejid, const char * const nick, const char *message); /** Called after a chat room message is displayed @param barejid Jabber ID of the room @param nick nickname of the message sender @param message the received message */ void prof_post_room_message_display(const char * const barejid, const char * const nick, const char *message); /** Called before a chat room message is sent @param barejid Jabber ID of the room @param message the message to be sent @return the modified or original message to send, or NULL to cancel sending of the message */ char* prof_pre_room_message_send(const char * const barejid, const char *message); /** Called after a chat room message has been sent @param barejid Jabber ID of the room @param message the sent message */ void prof_post_room_message_send(const char * const barejid, const char *message); /** Called when the server sends a chat room history message @param barejid Jabber ID of the room @param nick nickname of the message sender @param message the message to be sent @param timestamp time the message was originally sent to the room, in ISO8601 format */ void prof_on_room_history_message(const char * const barejid, const char *const nick, const char *const message, const char *const timestamp); /** Called before a private chat room message is displayed @param barejid Jabber ID of the room @param nick nickname of message sender @param message the received message @return the new message to display, or NULL to preserve the original message */ char* prof_pre_priv_message_display(const char * const barejid, const char * const nick, const char *message); /** Called after a private chat room message is displayed @param barejid Jabber ID of the room @param nick nickname of the message sender @param message the received message */ void prof_post_priv_message_display(const char * const barejid, const char * const nick, const char *message); /** Called before a private chat room message is sent @param barejid Jabber ID of the room @param nick nickname of message recipient @param message the message to be sent @return the modified or original message to send, or NULL to cancel sending of the message */ char* prof_pre_priv_message_send(const char * const barejid, const char * const nick, const char *message); /** Called after a private chat room message has been sent @param barejid Jabber ID of the room @param nick nickname of the message recipient @param message the sent message */ void prof_post_priv_message_send(const char * const barejid, const char * const nick, const char *message); /** Called before an XMPP message stanza is sent @param stanza The stanza to send @return The new stanza to send, or NULL to preserve the original stanza */ char* prof_on_message_stanza_send(const char *const stanza); /** Called when an XMPP message stanza is received @param stanza The stanza received @return 1 if Profanity should continue to process the message stanza, 0 otherwise */ int prof_on_message_stanza_receive(const char *const stanza); /** Called before an XMPP presence stanza is sent @param stanza The stanza to send @return The new stanza to send, or NULL to preserve the original stanza */ char* prof_on_presence_stanza_send(const char *const stanza); /** Called when an XMPP presence stanza is received @param stanza The stanza received @return 1 if Profanity should continue to process the presence stanza, 0 otherwise */ int prof_on_presence_stanza_receive(const char *const stanza); /** Called before an XMPP iq stanza is sent @param stanza The stanza to send @return The new stanza to send, or NULL to preserve the original stanza */ char* prof_on_iq_stanza_send(const char *const stanza); /** Called when an XMPP iq stanza is received @param stanza The stanza received @return 1 if Profanity should continue to process the iq stanza, 0 otherwise */ int prof_on_iq_stanza_receive(const char *const stanza); /** Called when a contact goes offline @param barejid Jabber ID of the contact @param resource the resource being disconnected @param status the status message received with the offline presence, or NULL */ void prof_on_contact_offline(const char *const barejid, const char *const resource, const char *const status); /** Called when a presence notification is received from a contact @param barejid Jabber ID of the contact @param resource the resource being disconnected @param presence presence of the contact, one of "chat", "online", "away", "xa" or "dnd" @param status the status message received with the presence, or NULL @param priority the priority associated with the resource */ void prof_on_contact_presence(const char *const barejid, const char *const resource, const char *const presence, const char *const status, const int priority); /** Called when a chat window is focussed @param barejid Jabber ID of the chat window recipient */ void prof_on_chat_win_focus(const char *const barejid); /** Called when a chat room window is focussed @param barejid Jabber ID of the room */ void prof_on_room_win_focus(const char *const barejid);