1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-07-21 18:24:14 -04:00

Added autobuild tools

This commit is contained in:
James Booth 2012-07-01 14:47:09 +01:00
parent 9e686c0e01
commit 30ca6cac3d
38 changed files with 14 additions and 55 deletions

14
.gitignore vendored
View File

@ -10,3 +10,17 @@ profanity
*.swp
testsuite
tags
.deps/
Makefile
Makefile.in
aclocal.m4
autom4te.cache/
config.h
config.h.in
config.status
configure
configure.scan
depcomp
install-sh
missing
stamp-h1

View File

@ -1,55 +0,0 @@
CC = gcc
WARNS = -Werror -Wall -Wextra -Wno-unused-parameter -Wno-unused-but-set-variable \
-Wno-unused-result
LIBS = -lncurses -L ~/lib -lstrophe -lxml2 -lexpat -lssl -lresolv \
`pkg-config --libs glib-2.0` `pkg-config --libs libnotify`
TESTLIB = -L ~/lib -l headunit `pkg-config --libs glib-2.0`
CPPLIB = -lstdc++
CFLAGS = -I ~/include -O3 $(WARNS) $(LIBS) `pkg-config --cflags glib-2.0` `pkg-config --cflags libnotify`
OBJS = log.o windows.o title_bar.o status_bar.o input_win.o jabber.o \
profanity.o util.o command.o history.o contact_list.o prof_history.o \
contact.o preferences.o prof_autocomplete.o common.o main.o
TESTOBJS = test_contact_list.o contact_list.o contact.o \
test_util.o test_prof_history.o prof_history.o util.o \
test_prof_autocomplete.o prof_autocomplete.o common.o
profanity: $(OBJS)
$(CC) -o profanity $(OBJS) $(LIBS)
common.o: common.h
log.o: log.h
windows.o: ui.h util.h contact_list.h preferences.h
title_bar.o: ui.h
status_bar.o: ui.h util.h
input_win.o: ui.h preferences.h util.h command.h
jabber.o: jabber.h log.h ui.h contact_list.h
profanity.o: log.h ui.h jabber.h command.h preferences.h \
contact_list.h
util.o: util.h
command.o: command.h util.h history.h contact_list.h
history.o: history.h prof_history.h
contact_list.o: contact_list.h contact.h prof_autocomplete.h
prof_history.o: prof_history.h
contact.o: contact.h
preferences.o: preferences.h log.h
prof_autocomplete.o: prof_autocomplete.h common.h
main.o: profanity.h
test_contact_list.o: contact_list.h contact.h
test_util.o: util.h
test_prof_history.o: prof_history.h
test_prof_autocomplete.o: contact.h prof_autocomplete.h
testsuite: testsuite.h $(TESTOBJS)
$(CC) $(CFLAGS) $(CPPLIB) testsuite.c $(TESTOBJS) -o testsuite $(TESTLIB)
.PHONY: test
test: testsuite
./testsuite
.PHONY: clean
clean:
rm -f profanity
rm -f profanity.log
rm -f *.o
rm -f testsuite

View File

View File

View File

View File

View File

View File