Last change
on this file since a19ea7a was
796da03,
checked in by Wilmer van der Gaast <wilmer@…>, at 2009-10-04T23:28:11Z
|
Something that compiles and runs, but otherwise utterly useless. Added a
protocols/purple/ module and included it in the build system. Already picks
up all the supported protocols and adds them individually.
|
-
Property mode set to
100644
|
File size:
690 bytes
|
Rev | Line | |
---|
[796da03] | 1 | ########################### |
---|
| 2 | ## Makefile for BitlBee ## |
---|
| 3 | ## ## |
---|
| 4 | ## Copyright 2002 Lintux ## |
---|
| 5 | ########################### |
---|
| 6 | |
---|
| 7 | ### DEFINITIONS |
---|
| 8 | |
---|
| 9 | -include ../../Makefile.settings |
---|
| 10 | |
---|
| 11 | # [SH] Program variables |
---|
| 12 | objects = purple.o |
---|
| 13 | |
---|
| 14 | CFLAGS += -Wall $$(pkg-config purple --cflags) |
---|
| 15 | LFLAGS += -r |
---|
| 16 | |
---|
| 17 | # [SH] Phony targets |
---|
| 18 | all: purple_mod.o |
---|
| 19 | check: all |
---|
| 20 | lcov: check |
---|
| 21 | gcov: |
---|
| 22 | gcov *.c |
---|
| 23 | |
---|
| 24 | .PHONY: all clean distclean |
---|
| 25 | |
---|
| 26 | clean: |
---|
| 27 | rm -f *.o core |
---|
| 28 | |
---|
| 29 | distclean: clean |
---|
| 30 | |
---|
| 31 | ### MAIN PROGRAM |
---|
| 32 | |
---|
| 33 | $(objects): ../../Makefile.settings Makefile |
---|
| 34 | |
---|
| 35 | $(objects): %.o: %.c |
---|
| 36 | @echo '*' Compiling $< |
---|
| 37 | @$(CC) -c $(CFLAGS) $< -o $@ |
---|
| 38 | |
---|
| 39 | purple_mod.o: $(objects) |
---|
| 40 | @echo '*' Linking purple_mod.o |
---|
| 41 | $(LD) $(LFLAGS) $(objects) -o purple_mod.o |
---|
Note: See
TracBrowser
for help on using the repository browser.