summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2011-03-08 18:55:24 -0500
committerDave Jones <davej@redhat.com>2011-03-08 18:55:24 -0500
commitc2a113493e84b6d8ec873e8b5c8c0496deac27d1 (patch)
tree56569d45a956a9826e89116960fe82d63eeb12ca
parentdc7d82f87a1fb020ca212a450a8988ffeeb0e85d (diff)
spacing
-rw-r--r--Makefile98
1 files changed, 49 insertions, 49 deletions
diff --git a/Makefile b/Makefile
index ad6aab0..a088a8c 100644
--- a/Makefile
+++ b/Makefile
@@ -25,9 +25,9 @@ LSMSR_TMP_HEADERS=AMD/k8.h AMD/fam10h.h AMD/fam11h.h generic_msr.h
%.h: %.regs scripts/createheader.py
python scripts/createheader.py $< `basename $< .regs` >$@
-LSMSR_SRC =\
- lsmsr.c\
- cpuid.c\
+LSMSR_SRC = \
+ lsmsr.c \
+ cpuid.c \
havecpuid.c
LSMSR_OBJS = $(LSMSR_SRC:%.c=%.o)
@@ -39,60 +39,60 @@ lsmsr: $(LSMSR_TMP_HEADERS) $(LSMSR_OBJS)
-include $(LSMSR_SRC:%.c=%.P)
-X86INFO_SRC =\
- AMD/identify.c\
- AMD/machine_check.c\
- AMD/MSR-Athlon.c\
- AMD/MSR-K6.c\
- AMD/powernow.c\
- AMD/dumppsb.c\
- AMD/bugs.c\
+X86INFO_SRC = \
+ AMD/identify.c \
+ AMD/machine_check.c \
+ AMD/MSR-Athlon.c \
+ AMD/MSR-K6.c \
+ AMD/powernow.c \
+ AMD/dumppsb.c \
+ AMD/bugs.c \
\
- Cyrix/identify.c\
+ Cyrix/identify.c \
\
- Intel/identify.c\
- Intel/identify-family6.c\
- Intel/identify-family6-extended.c\
- Intel/identify-family15.c\
- Intel/info.c\
- Intel/machine_check.c\
- Intel/cachesize.c\
- Intel/eblcr.c\
- Intel/MSR-P4.c\
- Intel/MSR-P6.c\
- Intel/MSR-performance.c\
- Intel/MSR-thermal.c\
- Intel/MSR-IDA.c\
- Intel/microcode.c\
- Intel/topology.c\
+ Intel/identify.c \
+ Intel/identify-family6.c \
+ Intel/identify-family6-extended.c \
+ Intel/identify-family15.c \
+ Intel/info.c \
+ Intel/machine_check.c \
+ Intel/cachesize.c \
+ Intel/eblcr.c \
+ Intel/MSR-P4.c \
+ Intel/MSR-P6.c \
+ Intel/MSR-performance.c \
+ Intel/MSR-thermal.c \
+ Intel/MSR-IDA.c \
+ Intel/microcode.c \
+ Intel/topology.c \
\
- Centaur/identify.c\
- Centaur/MSR-C3.c\
- Centaur/longhaul.c\
- Centaur/powersaver.c\
+ Centaur/identify.c \
+ Centaur/MSR-C3.c \
+ Centaur/longhaul.c \
+ Centaur/powersaver.c \
\
- NatSemi/identify.c\
+ NatSemi/identify.c \
\
- RiSE/identify.c\
+ RiSE/identify.c \
\
- SiS/identify.c\
+ SiS/identify.c \
\
- x86info.c\
- commandline.c\
- havecpuid.c\
- cpuid.c\
- features.c\
- identify.c\
- rdmsr.c\
- binary.c\
- mptable.c\
- get_model_name.c\
- mtrr.c \
- apic.c \
- connector.c\
- topology.c\
+ x86info.c \
+ commandline.c \
+ havecpuid.c \
+ cpuid.c \
+ features.c \
+ identify.c \
+ rdmsr.c \
+ binary.c \
+ mptable.c \
+ get_model_name.c \
+ mtrr.c \
+ apic.c \
+ connector.c \
+ topology.c \
\
- bench/benchmarks.c\
+ bench/benchmarks.c \
bench/MHz.c
X86INFO_OBJS = $(X86INFO_SRC:%.c=%.o)