MinGWify 'depends'
[msysgit.git] / src / depends / Makefile
blob4e6306b939781625c02662790a26108603fb5378
1 TARGET=depends.exe
2 OBJS=directory.o image.o depends.o
4 CFLAGS=-g
5 LIBS=-limagehlp
7 all: $(TARGET)
9 $(TARGET): $(OBJS)
10 $(CC) -o $@ $^ $(LIBS)