diff options
author | H. Peter Anvin <hpa@zytor.com> | 2017-09-12 11:11:41 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2017-09-12 11:26:50 -0700 |
commit | 7b31610abcf59c85b31a0b7c3db3a33ed82f71fd (patch) | |
tree | ad7fac9c532e798a3dd178994d784d91595d9765 /Makefile | |
parent | b92ea995371cec99e0366f6a341ca1e35e1f7211 (diff) | |
download | ledcolor-master.tar.gz ledcolor-master.tar.xz ledcolor-master.zip |
Initialize the RGB <-> XYZ matrices explicitly in C code, eliminating
the need to use octave, and making it easier to specify different
primaries for other LEDs.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ csv: mktables %.o: %.c $(CC) $(CFLAGS) -c -o $@ $< -mktables: mktables.o color.o rgbxyz.o +mktables: mktables.o color.o rgbxyz.o matrix.o $(CC) $(LDLFLAGS) -o $@ $^ $(LIBS) clean: |