diff options
author | dequis <dx@dxzone.com.ar> | 2014-09-27 11:54:35 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2014-09-27 11:54:35 -0300 |
commit | 0c5727785675d07493dcbd86593ad2049cf4e3a6 (patch) | |
tree | ed11c2e7ed40ca3062c3ad404cdf5d10ec64a459 | |
parent | c20353336e6ce3344a41ed5abb3f783ea31ea4e4 (diff) |
Makefile: Use wildcard for headers to avoid missing files
The following headers were missing:
dcc.h otr.h lib/base64.h lib/oauth2.h lib/oauth.h lib/xmltree.h
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ # Program variables objects = bitlbee.o dcc.o help.o ipc.o irc.o irc_im.o irc_channel.o irc_commands.o irc_send.o irc_user.o irc_util.o nick.o $(OTR_BI) query.o root_commands.o set.o storage.o $(STORAGE_OBJS) -headers = bitlbee.h commands.h conf.h config.h help.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h lib/events.h lib/ftutil.h lib/http_client.h lib/ini.h lib/json.h lib/json_util.h lib/md5.h lib/misc.h lib/proxy.h lib/sha1.h lib/ssl_client.h lib/url.h protocols/account.h protocols/bee.h protocols/ft.h protocols/nogaim.h +headers = $(wildcard *.h lib/*.h protocols/*.h) subdirs = lib protocols ifeq ($(TARGET),i586-mingw32msvc) |