annotate libtests/0028/Makefile @ 358:7b5633e55284 gcc-4.3-cleanups

$(LIBRARY) makefile target doesn't need GSOAP_INCLUDE. This isn't the cleanup I meant to make, but getting make to understand that audioDB.cpp is a dependency of both without screwing up the compilation is out of scope for this branch.
author mas01cr
date Wed, 12 Nov 2008 13:05:09 +0000
parents 94c18f128ce8
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