mirror of
https://git.freebsd.org/ports.git
synced 2025-06-11 15:50:33 -04:00
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)
19 lines
449 B
Text
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:
|