OK - here is my make file.  Maybe you guys can find
out if I screwed up some place.
I followed the LiS notes to create this.


CC=gcc

EXE=wp

INCLUDE_DIR=-I /home/changm/scc-linux \
            -I /usr/src/linux-2.4/include \
            -I /usr/src/LiS/include
            
        
CDEBUG= -Wall -O2 -DDEBUG1 -D__KERNEL__ -DLINUX  
CFLAGS += $(CDEBUG) $(INCLUDE_DIR) 
LDFLAGS += -m elf_i386

OFILES= wp.o timers.o bitfield.o format.o wp_word.o
crc.o ldu.o

#
.DEFAULT:

$(EXE): $(OFILES)
        $(CC) $(LDFLAGS) -o $@ $^ -lpthread -lLiS

clean: 
        $(RM) *.o $(EXE)


__________________________________
Do you Yahoo!?
Yahoo! Small Business $15K Web Design Giveaway 
http://promotions.yahoo.com/design_giveaway/
_______________________________________________
Linux-streams mailing list
[EMAIL PROTECTED]
http://gsyc.escet.urjc.es/mailman/listinfo/linux-streams

Reply via email to