summaryrefslogtreecommitdiff
path: root/gdb-wrapper2/Makefile
blob: bba6e446e44f4a9aa7bc380e6f73d05c6968d904 (plain)
1
2
3
4
5
6
7
8
9
10
test_program: test_program.c
	cc test_program.c -o test_program $(CFLAGS) $(LDFLAGS)

test: test.sh test_program
	./test.sh

clean:
	rm test_program

.PHONY: clean