annotate libtests/0024/Makefile @ 355:94c18f128ce8

First version of the API, committed to the main trunk. Thanks Christophe, for all the help!
author mas01ik
date Wed, 12 Nov 2008 10:21:06 +0000
parents
children
rev   line source
mas01ik@355 1 CC=gcc
mas01ik@355 2 CFLAGS+=-O3 -g
mas01ik@355 3 RM=rm -rf
mas01ik@355 4
mas01ik@355 5
mas01ik@355 6 all: test1
mas01ik@355 7
mas01ik@355 8
mas01ik@355 9 test1: prog1.c
mas01ik@355 10 gcc -Wall -o test1 prog1.c -laudioDB_API -L../..
mas01ik@355 11
mas01ik@355 12 clean:
mas01ik@355 13 $(RM) test1