Updated addon repository URL and improved debug output on download
[supertux.git] / external / findlocale / Makefile
1 CC = cc
2 CFLAGS = -Os -Wall
3
4 all: example
5
6 example: findlocale.o example.o
7         $(CC) example.o findlocale.o -o example
8
9 findlocale.o: findlocale.c findlocale.h
10         $(CC) $(CFLAGS) -c findlocale.c
11
12 example.o: example.c findlocale.h
13         $(CC) $(CFLAGS) -c example.c
14
15 clean:
16         $(RM) findlocale.o example.o example