Last active
August 14, 2025 06:17
-
-
Save devlights/327fd337398e18886d0e3a09b7ea0ee6 to your computer and use it in GitHub Desktop.
C言語用のシンプルなMakefile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UseTab: Always | |
IndentWidth: 4 | |
TabWidth: 4 | |
AlignConsecutiveAssignments: true | |
AlignConsecutiveDeclarations: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CC = gcc | |
CPPFLAGS = -I. | |
CFLAGS = -Wall -Wextra -std=c99 -g -DDEBUG -O0 | |
LDFLAGS = | |
LDLIBS = | |
TARGET = app | |
SRCS = app.c | |
OBJS = $(SRCS:.c=.o) | |
.DEFAULT_GOAL := run | |
fmt: | |
clang-format -i $(SRCS) | |
build: $(TARGET) | |
run: build | |
./$(TARGET) | |
clean: | |
$(RM) $(TARGET) $(OBJS) | |
$(TARGET): $(OBJS) | |
$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS) | |
.PHONY: fmt run build clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
REFERENCES