1999-05-03 09:29:11 +02:00
|
|
|
#
|
2009-09-02 17:23:35 +02:00
|
|
|
# Makefile for libiberty under openVMS
|
1999-05-03 09:29:11 +02:00
|
|
|
#
|
|
|
|
# For use with gnu-make for vms
|
|
|
|
#
|
|
|
|
# Created by Klaus K"ampf, kkaempf@progis.de
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2009-05-25 15:27:56 +02:00
|
|
|
OBJS=getopt.obj,obstack.obj,xexit.obj,xmalloc.obj,hex.obj,\
|
|
|
|
getopt1.obj,cplus-dem.obj,cp-demangle.obj,cp-demint.obj,\
|
2011-03-31 13:08:41 +02:00
|
|
|
asprintf.obj vasprintf.obj,mkstemps.obj,filename_cmp.obj,\
|
2009-05-25 15:27:56 +02:00
|
|
|
concat.obj,getruntime.obj,getpagesize.obj,getpwd.obj,xstrerror.obj,\
|
|
|
|
xmemdup.obj,xstrdup.obj,xatexit.obj,choose-temp.obj,fnmatch.obj,\
|
|
|
|
objalloc.obj,safe-ctype.obj,hashtab.obj,lbasename.obj,argv.obj,\
|
2013-07-09 09:44:25 +02:00
|
|
|
lrealpath.obj,make-temp-file.obj,stpcpy.obj,unlink-if-ordinary.obj,\
|
|
|
|
dwarfnames.obj
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
ifeq ($(CC),gcc)
|
|
|
|
CFLAGS=/include=([],[-.include])
|
|
|
|
else
|
|
|
|
# assume dec c
|
2009-05-25 15:27:56 +02:00
|
|
|
OPT=/noopt/debug/warnings=disable=(missingreturn)
|
|
|
|
CFLAGS=$(OPT)/include=([],[-.include])/name=(as_is,shortened)\
|
|
|
|
/define=(HAVE_CONFIG_H=1)\
|
|
|
|
/prefix=(all,except=("getopt","optarg","optopt","optind","opterr"))
|
1999-05-03 09:29:11 +02:00
|
|
|
endif
|
|
|
|
|
2009-09-02 17:23:35 +02:00
|
|
|
libiberty.olb: $(OBJS)
|
1999-05-03 09:29:11 +02:00
|
|
|
purge
|
|
|
|
lib/create libiberty *.obj
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$$ purge
|
|
|
|
$(RM) *.obj;
|
|
|
|
$(RM) libiberty.olb;
|