mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-28 09:30:41 +00:00
15 lines
197 B
Makefile
15 lines
197 B
Makefile
CC = gcc
|
|
CFLAGS = -Wall -O2
|
|
LFLAGS =-lpcap
|
|
|
|
all: testarp
|
|
|
|
testarp: testarp.o
|
|
$(CC) $(LFLAGS) -o testarp testarp.o
|
|
|
|
testarp.o: testarp.c
|
|
$(CC) $(CFLAGS) -c testarp.c
|
|
|
|
clean:
|
|
rm -f *~ *.o testarp
|