Changeset 105469 in vbox for trunk/src/libs/libpng-1.6.43/scripts/makefile.32sunu
- Timestamp:
- Jul 24, 2024 10:11:32 AM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 164130
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/libpng-1.6.43/scripts/makefile.32sunu
r103316 r105469 1 1 # makefile for libpng on Solaris 2.x with cc 2 2 # Contributed by William L. Sebok, based on makefile.linux 3 # Copyright (C) 2020-202 2Cosmin Truta3 # Copyright (C) 2020-2024 Cosmin Truta 4 4 # Copyright (C) 2002, 2006, 2010-2014 Glenn Randers-Pehrson 5 5 # Copyright (C) 1998 Greg Roelofs … … 20 20 # Utilities: 21 21 CC=cc 22 AR _RC=ar rc22 AR=ar 23 23 RANLIB=echo 24 MKDIR_P=mkdir -p25 24 LN_SF=ln -f -s 26 25 RM_F=/bin/rm -f … … 43 42 CPPFLAGS=-I$(ZLIBINC) # -DPNG_DEBUG=5 44 43 CFLAGS=$(SUN_CC_FLAGS) # $(WARNMORE) -g 44 ARFLAGS=rc 45 45 LDFLAGS=$(SUN_LD_FLAGS) -L$(ZLIBLIB) -R$(ZLIBLIB) libpng.a -lz -lm 46 46 … … 66 66 67 67 libpng.a: $(OBJS) 68 $(AR _RC) $@ $(OBJS)68 $(AR) $(ARFLAGS) $@ $(OBJS) 69 69 $(RANLIB) $@ 70 70
Note:
See TracChangeset
for help on using the changeset viewer.