#
# **********************************************
# ****         Makefile FlexCat 2.4         ****
# ****  (c) 2000-2013, Alessandro Pedretti  ****
# **********************************************
#


CC      = cc
CFLAGS  = -O3 -s


all: main.c flexcat_cat.h
	$(CC) $(CFLAGS) main.c -o flexcat

strip: flexcat
	strip flexcat
