Created
January 6, 2014 22:32
-
-
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
This file contains 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 | |
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