diff --git a/Makefile b/makefile similarity index 93% rename from Makefile rename to makefile index ddb9e30..17a0078 100644 --- a/Makefile +++ b/makefile @@ -7,7 +7,7 @@ TARGET = prog.exe all: $(TARGET) -$(TARGET): $(SOURCES) +$(TARGET): $(SOURCES) $(CC) $(CFLAGS) $(SOURCES) -o $(TARGET) $(LDFLAGS) $(LIBS) clean: rm -f $(TARGET)