Skip to content

Instantly share code, notes, and snippets.

@Mine02C4
Last active October 9, 2015 21:50
Show Gist options
  • Save Mine02C4/d167b3485085f5a8153d to your computer and use it in GitHub Desktop.
Save Mine02C4/d167b3485085f5a8153d to your computer and use it in GitHub Desktop.
プログラミング第3同演習向けMakefile 直下にある .c をまとめて1つの実行ファイルにコンパイル。多分後半で使う。多分
CC = gcc
CFLAGS = -O0
OUTPUT := elf
objects := $(patsubst %.c,%.o,$(wildcard *.c))
$(OUTPUT) : $(objects)
$(CC) $(objects) -o $@
.PHONY : clean
clean :
rm *.o
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment