Home | History | Annotate | Download | only in tools
      1 #
      2 # Read COPYING for licensing details.
      3 #
      4 # Ngie Cooper, June 2010
      5 #
      6 
      7 -include ../../../include/mk/config-openposix.mk
      8 
      9 top_srcdir?=	..
     10 
     11 srcdir=		$(top_srcdir)/tools
     12 
     13 all: ../bin/t0
     14 
     15 clean:
     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