aboutsummaryrefslogtreecommitdiff
path: root/test_harness/Makefile
blob: 443292b17d50bcabefc94b6df7e33a5f1260a4ce (plain) (blame)
1
2
3
4
5
6
7
8
9
CC=gcc
CFLAGS=-g3 -ggdb -Wall

test_harness.a: test_harness.c test_harness.h fake_env.o
	gcc -o test_harness.o -c test_harness.c $(CFLAGS)
	ar r test_harness.a test_harness.o fake_env.o

fake_env.o: fake_env.c fake_env.h
	gcc -o fake_env.o -c fake_env.c $(CFLAGS)