adventskalender-2009/src/Makefile
Aaron Mueller c050d08186 Day 6: C, Compiler, Makefile, Buildprocess
Initial project structure.
2009-12-01 22:55:38 +01:00

15 lines
124 B
Makefile

CC=gcc
CFLAGS=-Wall -Os -std=c99
all: main.c
$(CC) $(CFLAGS) -o game src/main.c
run
./game
clean: game.o
rm game.o