123456789101112131415161718192021222324252627282930313233343536373839 |
- #
- # StarPU
- # Copyright (C) INRIA 2008-2009 (see AUTHORS file)
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU Lesser General Public License as published by
- # the Free Software Foundation; either version 2.1 of the License, or (at
- # your option) any later version.
- #
- # This program is distributed in the hope that it will be useful, but
- # WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- #
- # See the GNU Lesser General Public License in COPYING.LGPL for more details.
- #
- export PKG_CONFIG_PATH=@STARPUDIR@
- LIBS+=$$(pkg-config --libs libstarpu)
- CFLAGS+=$$(pkg-config --cflags libstarpu)
- all: tag_example tag_example2
- tag_example.o: tag_example.c
- $(CC) $(CFLAGS) tag_example.c -c -o tag_example.o
- tag_example2.o: tag_example2.c
- $(CC) $(CFLAGS) tag_example2.c -c -o tag_example2.o
- tag_example: tag_example.o
- $(CC) tag_example.o -o tag_example $(LIBS)
- tag_example2: tag_example2.o
- $(CC) tag_example2.o -o tag_example2 $(LIBS)
- clean:
- @rm -f *.o *.d *.gcno *.gcda
- @rm -f tag_example tag_example2
|