root/trunk/src/tests/z-tests.mk

Revision 918, 382 bytes (checked in by takkaria, 3 months ago)

Use consistent newlines everywhere, and also set the svn:eol-style property to native on all text files.

  • Property svn:eol-style set to native
Line 
1 # Simple UNIX-only makefile for the z-tests tests.
2 EXE = z-tests
3
4 CC = gcc
5 CFLAGS = -Wall -O2 -Wno-unused-parameter -fprofile-arcs -ftest-coverage
6 LDFLAGS = -fprofile-arcs -ftest-coverage
7
8 OBJS = z-tests.o ../z-tests.o
9
10 $(EXE): $(OBJS)
11         $(CC) $(CFLAGS) $(LDFLAGS) -o $(EXE) $(OBJS) $(LIBS)
12
13 clean:
14         -rm -f *.o $(EXE)
15
16 %.o: %.c
17         $(CC) $(CFLAGS) -o $@ -c $<
18
19 z-tests.o: ../z-tests.o
20
Note: See TracBrowser for help on using the browser.