SHPARSER=/bin/shparser

OBJS= menu passwd_config sys_reboot sys_clearlog date_config \
      sigdb_upgrade license_upgrade sys_upgrade \
      cfg_import cfg_export sysname cfg_evtlog cfg_datalog \
      cfg_deviceid  cfg_evtedit webx_upgrade url_config flow_config \
      web_log history_log web_online alert_config alert_log history_alert \
      cfg_diff cfg_sync cfg_show

all: ${OBJS}

clean:
	rm -f ${OBJS}

.for objf in ${OBJS}
${objf}: ${.TARGET}.shp
	${SHPARSER} -i ${.TARGET}.shp -o ${.TARGET}
	chmod +x ${.TARGET}
.endfor

