Changeset 67 for libbst

Show
Ignore:
Timestamp:
09/07/06 16:40:08 (4 years ago)
Author:
aqua
Message:

Makefile enhancement...

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • libbst/Makefile

    r66 r67  
    11#DEBUG = -DDEBUG 
    2 CFLAGS = -O3 -pipe -g  
     2CFLAGS = -O3 -pipe -g  ${DEBUG} 
    33LDFLAGS = -lm 
    44.c.o: 
    5         gcc -c ${DEBUG} $< 
     5        gcc -c ${CFLAGS} $< 
    66 
    77all: libbst.o test 
    88 
    99test:  libbst.o libbst_test.o test.o  
    10         gcc ${CFLAGS} ${DEBUG} ${LDFLAGS} -o $@ libbst.o libbst_test.o test.o 
     10        gcc ${CFLAGS} ${LDFLAGS} -o $@ libbst.o libbst_test.o test.o 
    1111         
    1212clean: