blob: 4e6306b939781625c02662790a26108603fb5378 [file] [log] [blame]
TARGET=depends.exe
OBJS=directory.o image.o depends.o
CFLAGS=-g
LIBS=-limagehlp
all: $(TARGET)
$(TARGET): $(OBJS)
$(CC) -o $@ $^ $(LIBS)