Initial makefile.

master
Tomasz Polgrabia 2025-02-09 20:46:22 +01:00
parent 9002bf7afb
commit 3c06d3fd45
3 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1 @@
bin

View File

@ -0,0 +1,19 @@
BIN_DIR=bin
SRC_DIR=src
DEST=bin/program
SRC=$(wildcard $(SRC_DIR)/*.c)
BIN=$(patsubst $(SRC_DIR)/%.c,$(BIN_DIR)/%.c.o,$(SRC))
all: $(DEST)
.PHONY: clean
$(DEST): $(BIN)
${CC} $(LDFLAGS) -o $@ $^
$(BIN_DIR)/%.c.o: $(SRC_DIR)/%.c
@mkdir -p $(BIN_DIR)
$(CC) $(CFLAGS) -c -o $@ $<
clean:
rm -rf $(BIN_DIR)

View File

@ -0,0 +1,5 @@
#include <stdio.h>
int main() {
return 0;
}