blob: 005d7b7ee9d12196992d9b0cc31824de5673f903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
CC=gcc
CFLAGS=-Wall -Wformat -Wconversion -Wtrampolines -Wimplicit-fallthrough -Werror
cputemp2maxfreq: version.o debug.o sysfs.o cpufreq.o failsafe.o argparse.o logger.o cputemp.o cpulist.o
version.h: generate_version_h.sh .git/index
./generate_version_h.sh > version.h
%.o: %.c %.h debug.h
$(COMPILE.c) $(OUTPUT_OPTION) $<
debug.h: generate_debug_h.sh debug.c
./generate_debug_h.sh > debug.h.new
mv debug.h.new debug.h
|