Add some mega lospec tests.

This commit is contained in:
cnlohr 2023-01-20 02:14:22 -05:00
parent 45b483b96d
commit 0e78f44265
5 changed files with 1331 additions and 0 deletions

14
attic/Makefile Normal file
View file

@ -0,0 +1,14 @@
PROJS:=test_using_square_wave_octave_approach test_using_work_selection_heap test_using_work_selection_table test_using_square_wave_octave_approach_stipple
all : $(PROJS)
CFLAGS:=-I../colorchord2/rawdraw -g
LDFLAGS:=-lGL -lm -lpthread -lX11
$(PROJS): %: %.c
gcc -o $@ $^ $(CFLAGS) $(LDFLAGS)
clean :
rm -rf $(PROJS)