• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# Read COPYING for licensing details.
3#
4# Ngie Cooper, June 2010
5#
6
7-include ../../../include/mk/config-openposix.mk
8
9top_srcdir?=	..
10
11srcdir=		$(top_srcdir)/tools
12
13all: ../bin/t0
14
15clean:
16	@rm -f ../bin/t0
17
18../bin:
19	mkdir $@
20
21../bin/t0: ../bin $(srcdir)/t0.c
22	@$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(srcdir)/t0.c $(LDLIBS)
23