- Timestamp:
- 2012-02-11T12:55:45Z (13 years ago)
- Branches:
- master
- Children:
- eb54f56
- Parents:
- 23445b6
- Location:
- protocols
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/Makefile
r23445b6 r7fa5c19 8 8 9 9 -include ../Makefile.settings 10 ifdef SRCDIR11 SRCDIR := $(SRCDIR)protocols/10 ifdef _SRCDIR_ 11 _SRCDIR_ := $(_SRCDIR_)protocols/ 12 12 endif 13 13 … … 53 53 $(objects): ../Makefile.settings Makefile 54 54 55 $(objects): %.o: $( SRCDIR)%.c55 $(objects): %.o: $(_SRCDIR_)%.c 56 56 @echo '*' Compiling $< 57 57 @$(CC) -c $(CFLAGS) $< -o $@ -
protocols/jabber/Makefile
r23445b6 r7fa5c19 8 8 9 9 -include ../../Makefile.settings 10 ifdef SRCDIR11 SRCDIR := $(SRCDIR)protocols/jabber/10 ifdef _SRCDIR_ 11 _SRCDIR_ := $(_SRCDIR_)protocols/jabber/ 12 12 endif 13 13 … … 36 36 $(objects): ../../Makefile.settings Makefile 37 37 38 $(objects): %.o: $( SRCDIR)%.c38 $(objects): %.o: $(_SRCDIR_)%.c 39 39 @echo '*' Compiling $< 40 40 @$(CC) -c $(CFLAGS) $< -o $@ -
protocols/msn/Makefile
r23445b6 r7fa5c19 8 8 9 9 -include ../../Makefile.settings 10 ifdef SRCDIR11 SRCDIR := $(SRCDIR)protocols/msn/10 ifdef _SRCDIR_ 11 _SRCDIR_ := $(_SRCDIR_)protocols/msn/ 12 12 endif 13 13 … … 36 36 $(objects): ../../Makefile.settings Makefile 37 37 38 $(objects): %.o: $( SRCDIR)%.c38 $(objects): %.o: $(_SRCDIR_)%.c 39 39 @echo '*' Compiling $< 40 40 @$(CC) -c $(CFLAGS) $< -o $@ -
protocols/oscar/Makefile
r23445b6 r7fa5c19 8 8 9 9 -include ../../Makefile.settings 10 ifdef SRCDIR11 SRCDIR := $(SRCDIR)protocols/oscar/12 CFLAGS += -I$( SRCDIR)10 ifdef _SRCDIR_ 11 _SRCDIR_ := $(_SRCDIR_)protocols/oscar/ 12 CFLAGS += -I$(_SRCDIR_) 13 13 endif 14 14 … … 37 37 $(objects): ../../Makefile.settings Makefile 38 38 39 $(objects): %.o: $( SRCDIR)%.c39 $(objects): %.o: $(_SRCDIR_)%.c 40 40 @echo '*' Compiling $< 41 41 @$(CC) -c $(CFLAGS) $< -o $@ -
protocols/purple/Makefile
r23445b6 r7fa5c19 8 8 9 9 -include ../../Makefile.settings 10 ifdef SRCDIR11 SRCDIR := $(SRCDIR)protocols/purple/10 ifdef _SRCDIR_ 11 _SRCDIR_ := $(_SRCDIR_)protocols/purple/ 12 12 endif 13 13 … … 37 37 $(objects): ../../Makefile.settings Makefile 38 38 39 $(objects): %.o: $( SRCDIR)%.c39 $(objects): %.o: $(_SRCDIR_)%.c 40 40 @echo '*' Compiling $< 41 41 @$(CC) -c $(CFLAGS) $< -o $@ -
protocols/skype/Makefile
r23445b6 r7fa5c19 1 1 -include ../../Makefile.settings 2 ifdef SRCDIR3 SRCDIR := $(SRCDIR)protocols/skype/2 ifdef _SRCDIR_ 3 _SRCDIR_ := $(_SRCDIR_)protocols/skype/ 4 4 endif 5 5 … … 25 25 all: $(LIBS) $(MANPAGES) 26 26 27 skype.$(SHARED_EXT): $( SRCDIR)skype.c config.mak27 skype.$(SHARED_EXT): $(_SRCDIR_)skype.c config.mak 28 28 ifeq ($(BITLBEE),yes) 29 $(CC) $(CFLAGS) $(SHARED_FLAGS) -o skype.$(SHARED_EXT) $( SRCDIR)skype.c $(LDFLAGS)29 $(CC) $(CFLAGS) $(SHARED_FLAGS) -o skype.$(SHARED_EXT) $(_SRCDIR_)skype.c $(LDFLAGS) 30 30 endif 31 31 … … 45 45 endif 46 46 47 client: $( SRCDIR)client.c47 client: $(_SRCDIR_)client.c 48 48 49 49 autogen: configure.ac … … 103 103 git shortlog -s -n |sed 's/.*\t//'> AUTHORS 104 104 105 %.1: $( SRCDIR)%.txt $(SRCDIR)asciidoc.conf106 a2x --asciidoc-opts="-f $( SRCDIR)asciidoc.conf" \105 %.1: $(_SRCDIR_)%.txt $(_SRCDIR_)asciidoc.conf 106 a2x --asciidoc-opts="-f $(_SRCDIR_)asciidoc.conf" \ 107 107 -a bs_version=$(VERSION) -a bs_date=$(DATE) -f manpage -D . $< -
protocols/twitter/Makefile
r23445b6 r7fa5c19 8 8 9 9 -include ../../Makefile.settings 10 ifdef SRCDIR11 SRCDIR := $(SRCDIR)protocols/twitter/10 ifdef _SRCDIR_ 11 _SRCDIR_ := $(_SRCDIR_)protocols/twitter/ 12 12 endif 13 13 … … 36 36 $(objects): ../../Makefile.settings Makefile 37 37 38 $(objects): %.o: $( SRCDIR)%.c38 $(objects): %.o: $(_SRCDIR_)%.c 39 39 @echo '*' Compiling $< 40 40 @$(CC) -c $(CFLAGS) $< -o $@ -
protocols/yahoo/Makefile
r23445b6 r7fa5c19 8 8 9 9 -include ../../Makefile.settings 10 ifdef SRCDIR11 SRCDIR := $(SRCDIR)protocols/yahoo/10 ifdef _SRCDIR_ 11 _SRCDIR_ := $(_SRCDIR_)protocols/yahoo/ 12 12 endif 13 13 … … 37 37 $(objects): ../../Makefile.settings Makefile 38 38 39 $(objects): %.o: $( SRCDIR)%.c39 $(objects): %.o: $(_SRCDIR_)%.c 40 40 @echo '*' Compiling $< 41 41 @$(CC) -c $(CFLAGS) $< -o $@
Note: See TracChangeset
for help on using the changeset viewer.