File: Makefile

package info (click to toggle)
astyle 1.11.5-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 308 kB
  • ctags: 410
  • sloc: cpp: 2,975; makefile: 51; sh: 2
file content (14 lines) | stat: -rw-r--r-- 233 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# "Artistic Style" Makefile

CPPFLAGS = -O2 -W
OBJS = ASResource.o ASBeautifier.o ASFormatter.o astyle_main.o

astyle: $(OBJS)
	g++ $(CPPFLAGS) -o astyle  $(OBJS)

.cpp.o:
	g++ $(CPPFLAGS) -c $<
.SUFFIXES: .cpp .c .o

clean:
	rm *.o