Changeset 103316 in vbox for trunk/src/libs/libpng-1.6.42/scripts/makefile.gcc
- Timestamp:
- Feb 12, 2024 3:57:56 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 161613
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/libpng-1.6.42/scripts/makefile.gcc
r96425 r103316 1 1 # makefile for libpng using gcc (generic, static library) 2 # Copyright (C) 2000, 2014, 2019-2022 Cosmin Truta 2 3 # Copyright (C) 2008, 2014 Glenn Randers-Pehrson 3 # Copyright (C) 2000, 2014, 2019 Cosmin Truta4 4 # Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc. 5 5 # … … 20 20 RM_F = rm -f 21 21 22 # Compiler and linker flags 23 NOHWOPT = -DPNG_ARM_NEON_OPT=0 -DPNG_MIPS_MSA_OPT=0 \ 24 -DPNG_POWERPC_VSX_OPT=0 -DPNG_INTEL_SSE_OPT=0 22 25 WARNMORE = -Wwrite-strings -Wpointer-arith -Wshadow \ 23 26 -Wmissing-declarations -Wtraditional -Wcast-align \ 24 27 -Wstrict-prototypes -Wmissing-prototypes # -Wconversion 25 CPPFLAGS = -I$(ZLIBINC) # -DPNG_DEBUG=5 26 CFLAGS = -W -Wall -O2 # $(WARNMORE) -g 27 LDFLAGS = -L$(ZLIBLIB) 28 DEFS = $(NOHWOPT) 29 CPPFLAGS = -I$(ZLIBINC) $(DEFS) # -DPNG_DEBUG=5 30 CFLAGS = -O2 -Wall -Wextra -Wundef # $(WARNMORE) -g 31 LDFLAGS = -L$(ZLIBLIB) # -g 28 32 LIBS = -lz -lm 29 33 … … 35 39 PNGLIBCONF_H_PREBUILT = scripts/pnglibconf.h.prebuilt 36 40 37 # Variables38 OBJS = 39 40 41 # File lists 42 OBJS = png.o pngerror.o pngget.o pngmem.o pngpread.o \ 43 pngread.o pngrio.o pngrtran.o pngrutil.o pngset.o \ 44 pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o 41 45 42 46 # Targets
Note:
See TracChangeset
for help on using the changeset viewer.