mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
e8812fb523
A reindenter and reformatter of C++, C and Java source code. PR: 9875 Submitted by: Don Croyle <croyle@gelemna.ft-wayne.in.us>
20 lines
420 B
Plaintext
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:
|