view Makefile.in @ 36:ae1d059fa6fe

added oops message suppression functionality. it discards oops message if a sent message is more than 140 bytes and less than 140 letters.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Sun, 11 May 2008 03:52:06 +0900
parents 9ac8cea32513
children 8e1c8afac4dd
line wrap: on
line source

OBJECTIVE = pidgin-twitter.so
SRC = pidgin-twitter.c

PIDGIN_CFLAGS = @PIDGIN_CFLAGS@
GLIB_CFLAGS = @GLIB_CFLAGS@
CFLAGS = -fPIC -shared -Wall $(PIDGIN_CFLAGS) $(GLIB_CFLAGS)

GLIB_LIBS = @GLIB_LIBS@
LDFLAGS = $(GLIB_LIBS)

PIDGIN_LIB_DIR = @PIDGIN_LIB_DIR@


default: $(OBJECTIVE)


$(OBJECTIVE): $(SRC)
	gcc -o $@ $< $(CFLAGS) $(LDFLAGS) -g 


install: $(OBJECTIVE)
	install -m 755 $(OBJECTIVE) $(PIDGIN_LIB_DIR)/pidgin


clean:
	rm -f $(OBJECTIVE)


distclean: clean
	rm -f Makefile config.log config.status aclocal.m4 *~
	rm -rf autom4te.cache