###############################################################################
# vlcs (VideoLAN Channel Server) main Makefile - (c)2001 VideoLAN
###############################################################################

all: vlcs

vlcs: vlcs.c vlcs.h
	$(CC) -O3 -g -I. -Wall -o $@ vlcs.c

clean:
	-rm -f vlcs
