aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/makefile
blob: 97920f13bdc96eb70c496c7723bc1d6774a8bb68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Makefile for standalone test programs in this directory
# $Header: /mnt/data2/cvs2svn/cvs-repositories/arrangements/CactusBase/LocalInterp/src/GeneralizedPolynomial-Uniform/makefile,v 1.6 2003-02-03 08:57:03 jthorn Exp $

.PHONY	: all
all	: test_molecule_posn test_strlcpy

test_molecule_posn	: test_molecule_posn.c molecule_posn.c \
                          InterpLocalUniform.h
	gcc -g \
            -Wall -W -Wno-unused -Wshadow -Winline -Wpointer-arith \
            -Wbad-function-cast -Wcast-align -Wcast-qual \
            -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations \
            -DLOCALINTERP_STANDALONE_BUILD -o test_molecule_posn \
            test_molecule_posn.c molecule_posn.c -lm

test_strlcpy	: test_strlcpy.c util.c InterpLocalUniform.h
	gcc -g \
            -Wall -W -Wno-unused -Wshadow -Winline -Wpointer-arith \
            -Wbad-function-cast -Wcast-align -Wcast-qual \
            -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations \
            -DLOCALINTERP_STANDALONE_BUILD -o test_strlcpy \
            test_strlcpy.c util.c

.PHONY	: clean
clean	:
	-rm test_molecule_posn test_strlcpy