ClamAV is an open source (GPLv2) anti-virus toolkit.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
clamav/contrib/clamdtop/Makefile

18 lines
275 B

CFLAGS=-O2 -g -Wall -W -Wshadow
CC=gcc
OBJS=clamdtop.o
LDFLAGS=
CPPFLAGS=
ifeq ($(MSYSTEM),MINGW32)
LIBS=-lpdcurses -lws2_32
else
LIBS=-lncurses
endif
clamdtop: $(OBJS) Makefile
$(CC) $(CPPFLAGS) $(CFLAGS) $(OBJS) -o $@ $(LDFLAGS) $(LIBS)
clean:
rm -f clamdtop $(OBJS)