]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/makefile.vms
[libiberty] Use pipe inside pex_run
[thirdparty/gcc.git] / libiberty / makefile.vms
CommitLineData
28e9041c 1#
40e61a82 2# Makefile for libiberty under openVMS
28e9041c 3#
4# For use with gnu-make for vms
5#
6# Created by Klaus K"ampf, kkaempf@progis.de
7#
8#
9
15cea3dc 10OBJS=getopt.obj,obstack.obj,xexit.obj,xmalloc.obj,hex.obj,\
11 getopt1.obj,cplus-dem.obj,cp-demangle.obj,cp-demint.obj,\
4f10e555 12 asprintf.obj vasprintf.obj,mkstemps.obj,filename_cmp.obj,\
15cea3dc 13 concat.obj,getruntime.obj,getpagesize.obj,getpwd.obj,xstrerror.obj,\
14 xmemdup.obj,xstrdup.obj,xatexit.obj,choose-temp.obj,fnmatch.obj,\
15 objalloc.obj,safe-ctype.obj,hashtab.obj,lbasename.obj,argv.obj,\
6af0092a 16 lrealpath.obj,make-temp-file.obj,stpcpy.obj,unlink-if-ordinary.obj,\
17 dwarfnames.obj
28e9041c 18
19ifeq ($(CC),gcc)
20CFLAGS=/include=([],[-.include])
21else
22# assume dec c
15cea3dc 23OPT=/noopt/debug/warnings=disable=(missingreturn)
24CFLAGS=$(OPT)/include=([],[-.include])/name=(as_is,shortened)\
25 /define=(HAVE_CONFIG_H=1)\
26 /prefix=(all,except=("getopt","optarg","optopt","optind","opterr"))
28e9041c 27endif
28
40e61a82 29libiberty.olb: $(OBJS)
28e9041c 30 purge
31 lib/create libiberty *.obj
32
28e9041c 33clean:
34 $$ purge
28e9041c 35 $(RM) *.obj;
36 $(RM) libiberty.olb;