diff options
author | steve <steve@FreeBSD.org> | 1999-04-03 09:26:18 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-04-03 09:26:18 +0800 |
commit | f565b5205b508a486cce8b0cb16e55c27ed1dfab (patch) | |
tree | 4b8c42b741e2a71f678a3d02a59025186160e51d /devel/astyle/files | |
parent | 308ebcff9aecff9a131a0cf18d8a7a79b01c5707 (diff) | |
download | freebsd-ports-gnome-f565b5205b508a486cce8b0cb16e55c27ed1dfab.tar.gz freebsd-ports-gnome-f565b5205b508a486cce8b0cb16e55c27ed1dfab.tar.zst freebsd-ports-gnome-f565b5205b508a486cce8b0cb16e55c27ed1dfab.zip |
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>
Diffstat (limited to 'devel/astyle/files')
-rw-r--r-- | devel/astyle/files/patch-aa | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/devel/astyle/files/patch-aa b/devel/astyle/files/patch-aa new file mode 100644 index 000000000000..6b6316e5badb --- /dev/null +++ b/devel/astyle/files/patch-aa @@ -0,0 +1,19 @@ +--- 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: |