1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/devel/astyle/files/patch-aa
Steve Price e8812fb523 Import of astyle version 1.6.0.
A reindenter and reformatter of C++, C and Java source code.

PR:		9875
Submitted by:	Don Croyle <croyle@gelemna.ft-wayne.in.us>
1999-04-03 01:26:18 +00:00

20 lines
420 B
Plaintext

--- Makefile.orig Sun Jan 3 11:43:25 1999
+++ Makefile Sun Jan 31 22:34:12 1999
@@ -1,13 +1,13 @@
# "Artistic Style" Makefile
-CPPFLAGS = -O2 -W
+CPPFLAGS ?= -O2 -W
OBJS = ASResource.o ASBeautifier.o ASFormatter.o astyle_main.o
astyle: $(OBJS)
- g++ $(CPPFLAGS) -o astyle $(OBJS)
+ eg++ $(CPPFLAGS) -o astyle $(OBJS)
.cpp.o:
- g++ $(CPPFLAGS) -c $<
+ eg++ $(CPPFLAGS) -c $<
.SUFFIXES: .cpp .c .o
clean: