Skip to content

Instantly share code, notes, and snippets.

@edusantana
Created January 6, 2014 22:32
Show Gist options
  • Save edusantana/8291029 to your computer and use it in GitHub Desktop.
Save edusantana/8291029 to your computer and use it in GitHub Desktop.
Conteúdo: Arquivos em C, TDD, teste Funcionalidade: Apresentação das regras do Jogo Etapa 2
CC=gcc
CFLAGS=-Wall -g -std=c1x
all: regras_test
regras_test: regras_test.c regras.c
$(CC) $(CFLAGS) regras_test.c regras.c -o regras_test
test_all:
./regras_test
clean:
rm -rf regras_test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment