Fix indentation.
[neverball] / tools / Makefile
1
2 CFLAGS+= -Wall -g -ansi -pedantic $(shell sdl-config --cflags)
3
4 DEMOCONV= democonv
5
6 DEMOCONV_OBJS= \
7         ../share/binary.o \
8         src/democonv.o
9
10 %.o : %.c
11         $(CC) $(CFLAGS) -I../share -I../ball -o $@ -c $<
12
13 all: $(DEMOCONV)
14
15 $(DEMOCONV): $(DEMOCONV_OBJS)
16         $(CC) $(CFLAGS) -o $(DEMOCONV) $(DEMOCONV_OBJS)
17
18 clean :
19         $(RM) $(DEMOCONV) $(DEMOCONV_OBJS)