ports/devel/astyle/files/patch-ad
OKAZAKI Tetsurou 198d99a3e1 Upgrade to 1.15.3.
Set MAINTAINER to ports@FreeBSD.org (requested by the maintainer).
Fix warnings detected by portlint.

PR:		43237
Submitted by:	Marco Molteni <molter@tin.it>
Approved by:	Don Croyle <croyle@gelemna.org> (maintainer)
2002-10-26 12:58:12 +00:00

19 lines
449 B
Text

--- Makefile.orig Fri Feb 11 13:02:00 2000
+++ Makefile Sat Oct 26 21:35:38 2002
@@ -1,13 +1,13 @@
# "Artistic Style" Makefile
-CPPFLAGS = -Wall -Wno-sign-compare -O2
+CPPFLAGS = ${CXXFLAGS}
OBJS = ASResource.o ASBeautifier.o ASFormatter.o astyle_main.o
astyle: $(OBJS)
- g++ $(CPPFLAGS) -o astyle $(OBJS)
+ $(CXX) $(CPPFLAGS) -o astyle $(OBJS)
.cpp.o:
- g++ $(CPPFLAGS) -c $<
+ $(CXX) $(CPPFLAGS) -c $<
.SUFFIXES: .cpp .c .o
clean: