File: Makefile

package info (click to toggle)
ent 1.0-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 124 kB
  • ctags: 58
  • sloc: ansic: 348; makefile: 47; sh: 10
file content (16 lines) | stat: -rw-r--r-- 281 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#   Unix make file for random test program

CC=gcc
CFLAGS = -O3 -funroll-all-loops

ent:	ent.o iso8859.o randtest.o
	$(CC) $(CFLAGS) ent.o iso8859.o randtest.o -o ent -lm

ent.c:	iso8859.h randtest.h

clean:
	rm -f *.o *.bak ent 

test:
	./entest.sh
	diff -s entest.mas entest.bak