diff options
author | Steve Price <steve@FreeBSD.org> | 1999-04-03 01:26:18 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-04-03 01:26:18 +0000 |
commit | e8812fb5233f05a3766f6d6e019fcebd864882c3 (patch) | |
tree | bd5b2ee22cc49c98b611f1c3609cab47b81d4034 /devel/astyle/files | |
parent | fe0a26526db1967f92c8462bf6dc4849c86f9726 (diff) |
Notes
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: |