Subversion Repositories Kolibri OS

Rev

Rev 5191 | Rev 5217 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5191 serge 1
 
2
CFLAGS_OPT+= -fomit-frame-pointer -fno-ident -mno-ms-bitfields
3
CFLAGS_OPT+= -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes
4
CFLAGS   = -c $(CFLAGS_OPT)
5
6
 
7
8
 
9
10
 
11
	alloca.c argv.c	asprintf.c bcmp.c bcopy.c bzero.c	\
12
	choose-temp.c concat.c cp-demangle.c cp-demint.c 	\
13
	cplus-dem.c crc32.c dwarfnames.c dyn-string.c fdmatch.c	\
14
	ffs.c fibheap.c filename_cmp.c floatformat.c fnmatch.c	\
15
	fopen_unlocked.c getopt.c getopt1.c getpwd.c		\
16
	getruntime.c hashtab.c hex.c index.c insque.c		\
17
	lbasename.c lrealpath.c	make-relative-prefix.c		\
18
	make-temp-file.c md5.c memmem.c mempcpy.c mkstemps.c	\
19
	objalloc.c obstack.c partition.c physmem.c random.c	\
20
	regex.c rindex.c safe-ctype.c setenv.c setproctitle.c	\
21
	sha1.c sigsetmask.c simple-object.c simple-object-coff.c\
22
	simple-object-elf.c simple-object-mach-o.c		\
23
	simple-object-xcoff.c sort.c spaces.c splay-tree.c	\
24
	stack-limit.c stpcpy.c stpncpy.c strcasecmp.c strerror.c\
25
	strncasecmp.c strndup.c strnlen.c strverscmp.c		\
26
	timeval-utils.c	unlink-if-ordinary.c vasprintf.c	\
27
	xatexit.c xexit.c xmalloc.c xmemdup.c xstrdup.c		\
28
	xstrerror.c xstrndup.c
29
30
 
31
32
 
33
34
 
35
36
 
37
	$(AR) crs libiberty.a $(OBJS)
38
	mv -f libiberty.a $(SDK_DIR)/lib
5199 serge 39
5191 serge 40
 
41
	$(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -o $@ $<
42