source: protocols/purple/Makefile @ b0a89cc

Last change on this file since b0a89cc was b0a89cc, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-08-27T08:48:18Z

Use nifty gcc -MD feature to automatically track .h dependencies of all C
files, this finally gives proper dependencies, which means the end of
getting broken binaries around headerfile changes, etc.

Sure, this may not work on obscurux with superawesomeincompatiblecc while
autoconf does, but at least BitlBee's configure script still runs in <1s.
:-)

  • Property mode set to 100644
File size: 784 bytes
RevLine 
[796da03]1###########################
2## Makefile for BitlBee  ##
3##                       ##
4## Copyright 2002 Lintux ##
5###########################
6
7### DEFINITIONS
8
9-include ../../Makefile.settings
[f60079b]10ifdef SRCDIR
11SRCDIR := $(SRCDIR)protocols/purple/
12endif
[796da03]13
14# [SH] Program variables
[2309152]15objects = ft.o purple.o
[796da03]16
[e08e53c]17CFLAGS += -Wall $(PURPLE_CFLAGS)
[796da03]18LFLAGS += -r
19
20# [SH] Phony targets
21all: purple_mod.o
22check: all
23lcov: check
24gcov: 
25        gcov *.c
26
27.PHONY: all clean distclean
28
29clean:
30        rm -f *.o core
31
32distclean: clean
[b0a89cc]33        rm -rf .depend
[796da03]34
35### MAIN PROGRAM
36
37$(objects): ../../Makefile.settings Makefile
38
[f60079b]39$(objects): %.o: $(SRCDIR)%.c
[796da03]40        @echo '*' Compiling $<
41        @$(CC) -c $(CFLAGS) $< -o $@
42
43purple_mod.o: $(objects)
44        @echo '*' Linking purple_mod.o
45        $(LD) $(LFLAGS) $(objects) -o purple_mod.o
[b0a89cc]46
47-include .depend/*.d
Note: See TracBrowser for help on using the repository browser.