#/***************************************************************
#*             Copyright (C) 2008 by SerComm Corp.
#*                    All Rights Reserved.
#*
#*      Use of this software is restricted to the terms and
#*      conditions of SerComm's software license agreement.
#*
#*                        www.sercomm.com
#****************************************************************/

#
# sc_rmcmt: utility to remove sercomm comments from .c and .h files
#
 

all:
	gcc rmcmt.c -o sc_rmcmt

clean:
	rm 	sc_rmcmt

