Files
sics/site_ansto/hardsup/makefile
Douglas Clowes 6de7c8773f Add -Wall compiler option
r1510 | dcl | 2007-02-19 12:33:27 +1100 (Mon, 19 Feb 2007) | 2 lines
2012-11-15 13:00:04 +11:00

22 lines
555 B
Makefile

#---------------------------------------------------------------------------
# Makefile for the site hardware support library
# Paul Hathaway, Nov 2004
#--------------------------------------------------------------------------
.SUFFIXES:
.SUFFIXES: .c .o
SRC = .
CC = gcc
CFLAGS = -g -DLINUX $(DFORTIFY) -I$(SRC) -I../.. -Wall
HOBJ= serialsinq.o nhq200util.o itc4util.o lh45util.o lakeshore340util.o asynsrv_utility.o geterrno.o strjoin.o
libhlib.a: $(HOBJ)
rm -f libhlib.a
ar cr libhlib.a $(HOBJ)
ranlib libhlib.a
clean:
rm -f *.o *.a