Changeset 878

Show
Ignore:
Timestamp:
08/06/07 18:42:57 (1 year ago)
Author:
cesar
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tests/cache/cherokee/Makefile

    r695 r878  
    33 
    44CC = gcc 
    5 CFLAGS = -O0 -g3 -Wall -I. -I.. -I$(CHEROKEE_PATH) -I$(CHEROKEE_PATH)/cherokee -DCHEROKEE_COMPILATION  
     5CFLAGS = -O0 -g3 -Wall -I. -I.. -I$(CHEROKEE_PATH) -I$(CHEROKEE_PATH)/cherokee -DCHEROKEE_COMPILATION -DTRACE_ENABLED 
    66LIBS = -lcherokee-base $(CHEROKEE_DEPS) 
    77 
     
    99PROG = test 
    1010 
    11 .c.o: test.c cherkokee.h 
     11.c.o: test.c cherokee.h 
    1212        $(CC) $(CFLAGS) -c -o $@ $< 
    1313 
    1414$(PROG): $(OBJS) 
    15         $(CC) -o $@ $(OBJS) $(LIBS) 
     15        $(CC) -o $@ $(OBJS) $(LIBS) -L $(CHEROKEE_PATH)/cherokee/.libs/ 
    1616 
    1717clean: