head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2013.08.26.01.08.20;	author dholland;	state Exp;
branches;
next	;
commitid	jkOSFTLtOMkSTT2x;


desc
@@


1.1
log
@Initial pieces and skeleton for a lint replacement.

All I've actually written so far is about the first third of the
preprocessor and some of the support code, but based on the "commit
early and often" rule I'm going to commit what I have now.
@
text
@TOP=..
include $(TOP)/mk/base.mk

SRCS=main.c
PROG=mint
CFLAGS+=-I../include

INTLIBS+=../cpp/lib.a
INTLIBS+=../support/lib.a
INTLIBS+=../c/lib.a
INTLIBS+=../local/lib.a
INTLIBS+=../global/lib.a

include $(TOP)/mk/prog.mk
@
