head     1.1;
branch   1.1.1;
access   ;
symbols  software:1.1.1.1 free:1.1.1;
locks    ; strict;
comment  @# @;


1.1
date     2002.07.29.11.11.33;  author djstop;  state Exp;
branches 1.1.1.1;
next     ;

1.1.1.1
date     2002.07.29.11.11.33;  author djstop;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@#   djstop utility makefile
#   2000.12.17
#   Created by Noh kwang min

CC          =   gcc
CFLAGS      =   -O2 -Wall
OBJECTS     =   insert_ip.o         \
                extract_key.o

LIBS        =   -lpcap

.c.o:
	$(CC) $(CFLAGS) $(DEFINES) -c $< -o $@@

all: 	insert_ip extract_key

insert_ip: $(OBJECTS)
	$(CC) insert_ip.o -o insert_ip

extract_key: $(OBJECTS)
	$(CC) extract_key.o $(LIBS) -o extract_key


clean:
	rm -f *.core insert_ip extract_key *.o

distclean: clean
	rm -f Makefile

# EOF
@


1.1.1.1
log
@start
@
text
@@
