Commit | Line | Data |
---|---|---|
f37f1d93 MD |
1 | # Copyright (C) 2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
2 | # | |
3 | # THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED | |
4 | # OR IMPLIED. ANY USE IS AT YOUR OWN RISK. | |
5 | # | |
6 | # Permission is hereby granted to use or copy this program for any | |
7 | # purpose, provided the above notices are retained on all copies. | |
8 | # Permission to modify the code and to distribute modified code is | |
9 | # granted, provided the above notices are retained, and a notice that | |
10 | # the code was modified is included with the above copyright notice. | |
11 | # | |
12 | # This makefile is purposefully kept simple to support GNU and BSD make. | |
13 | ||
c7d692ea | 14 | ifndef CC |
f37f1d93 | 15 | CC = gcc |
c7d692ea | 16 | endif |
f37f1d93 MD |
17 | CFLAGS = -g -O2 -Wall |
18 | ||
19 | all: $(BINARY) | |
20 | ||
21 | $(BINARY): $(OBJECTS) | |
22 | $(CC) $(CFLAGS) $(LDFLAGS) $(AM_CFLAGS) $(AM_LDFLAGS) \ | |
bda791c1 | 23 | -o $@ $(OBJECTS) $(LIBS) |
f37f1d93 | 24 | |
f7e7a1b8 | 25 | $(OBJECTS): $(SOURCES) $(DEPS) |
f37f1d93 MD |
26 | $(CC) $(CPPFLAGS) $(CFLAGS) $(AM_CPPFLAGS) $(AM_CFLAGS) \ |
27 | -c -o $@ $(SOURCES) | |
28 | ||
29 | .PHONY: clean | |
30 | clean: | |
31 | rm -f *.o $(BINARY) |