Added incflags target, this is useful for running code checkers like splint.

r1024 | ffr | 2006-06-22 09:22:41 +1000 (Thu, 22 Jun 2006) | 2 lines
This commit is contained in:
Ferdi Franceschini
2006-06-22 09:22:41 +10:00
committed by Douglas Clowes
parent 400871d6da
commit cb5b6e704e

View File

@@ -30,7 +30,8 @@ PSI_LIBS = -L$(HDFROOT)/lib $(NILIB)\
# ANSTO rules and variables
CC = gcc
CFLAGS = -g -Ihardsup -I.. -Wno-unused -Wno-comment -Wno-switch -Werror
INCFLAGS = -Ihardsup -I..
CFLAGS = -g $(INCFLAGS) -Wno-unused -Wno-comment -Wno-switch -Werror
HDFROOT=/usr/local
SRC = ./../..
@@ -97,6 +98,9 @@ clean:
MZOBJ=fsm.o logger.o sugar.o pardef.o ease.o strobj.o oxinst.o \
ipsdriv.o ilmdriv.o itcdriv.o ighdriv.o euro2kdriv.o modbus.o
incflags:
@echo ${INCFLAGS}
cflags:
@echo ${CFLAGS}