mirror of
https://github.com/martijnvanbrummelen/nwipe.git
synced 2026-02-22 06:52:12 +00:00
Stage 1 adds the additional variables to the drive context and creates the temperature initialisation function, which associates a hwmonX directory with a block device. Also wrote the context update function, that reads hwmon for each drive context and writes the temperatures back to the context. Stage 2 commit to follow which will make changes within the GUI to call the update function every 60 seconds and display the temperature information.
11 lines
608 B
Makefile
11 lines
608 B
Makefile
# what flags you want to pass to the C compiler & linker
|
|
#CFLAGS = -lncurses -lparted
|
|
AM_CFLAGS =
|
|
AM_LDFLAGS =
|
|
|
|
# this lists the binaries to produce, the (non-PHONY, binary) targets in
|
|
# the previous manual Makefile
|
|
bin_PROGRAMS = nwipe
|
|
nwipe_SOURCES = context.h isaac_rand/isaac_rand.c logging.h options.h prng.h version.h temperature.h nwipe.c gui.c isaac_rand/isaac_rand.h method.h pass.c device.c gui.h isaac_rand/isaac_standard.h mt19937ar-cok/mt19937ar-cok.c nwipe.h mt19937ar-cok/mt19937ar-cok.h pass.h device.h logging.c method.c options.c prng.c version.c temperature.c
|
|
nwipe_LDADD = $(PARTED_LIBS)
|