home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
zip
/
gnu
/
tests.lzh
/
TESTS
/
MAKEFILE.HP
< prev
next >
Wrap
Text File
|
1993-07-29
|
624b
|
32 lines
#
# Makefile for HP-UX hpa700 A.B8.05 E 9000/720 56914181
#
# Must say hpux has come a ways: still fails some of the string tests
#
SRC = tatof.c tbcopy.c tctype.c tprintf.c tqsort.c trandm.c trdwr.c \
tscanf.c tsetjm.c tsignl.c tstdio.c tstring.c tstrl1.c \
tstrl2.c ttime.c
.SUFFIXES: .ttp
.c.ttp:
$(CC) $(CFLAGS) -o $*.ttp $*.c
CC= cc
CFLAGS = -Aa -g +ESlit -D_POSIX_SOURCE
ALL = $(SRC:.c=.ttp)
all : $(ALL)
clean:
rm -f *.o
realclean: clean
rm -f $(ALL) core report test
# writable strings needed for tstdio for sscanf() in sr_test()
tstdio.ttp: tstdio.c
$(CC) -Aa -g -D_POSIX_SOURCE -o tstdio.ttp tstdio.c