Mercurial > hg > CbC > CbC_gcc
annotate libiberty/makefile.vms @ 158:494b0b89df80 default tip
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 18:13:55 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
0 | 1 # |
55
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
2 # Makefile for libiberty under openVMS |
0 | 3 # |
4 # For use with gnu-make for vms | |
5 # | |
6 # Created by Klaus K"ampf, kkaempf@progis.de | |
7 # | |
8 # | |
9 | |
55
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
10 OBJS=getopt.obj,obstack.obj,xexit.obj,xmalloc.obj,hex.obj,\ |
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
11 getopt1.obj,cplus-dem.obj,cp-demangle.obj,cp-demint.obj,\ |
111 | 12 asprintf.obj vasprintf.obj,mkstemps.obj,filename_cmp.obj,\ |
55
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
13 concat.obj,getruntime.obj,getpagesize.obj,getpwd.obj,xstrerror.obj,\ |
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
14 xmemdup.obj,xstrdup.obj,xatexit.obj,choose-temp.obj,fnmatch.obj,\ |
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
15 objalloc.obj,safe-ctype.obj,hashtab.obj,lbasename.obj,argv.obj,\ |
111 | 16 lrealpath.obj,make-temp-file.obj,stpcpy.obj,unlink-if-ordinary.obj,\ |
17 dwarfnames.obj | |
0 | 18 |
19 ifeq ($(CC),gcc) | |
20 CFLAGS=/include=([],[-.include]) | |
21 else | |
22 # assume dec c | |
55
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
23 OPT=/noopt/debug/warnings=disable=(missingreturn) |
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
24 CFLAGS=$(OPT)/include=([],[-.include])/name=(as_is,shortened)\ |
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
25 /define=(HAVE_CONFIG_H=1)\ |
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
26 /prefix=(all,except=("getopt","optarg","optopt","optind","opterr")) |
0 | 27 endif |
28 | |
55
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
29 libiberty.olb: $(OBJS) |
0 | 30 purge |
31 lib/create libiberty *.obj | |
32 | |
33 clean: | |
34 $$ purge | |
35 $(RM) *.obj; | |
36 $(RM) libiberty.olb; |