This commit is contained in:
2026-02-19 23:10:41 +01:00
commit d935aeaf9a
13 changed files with 8350 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
CC = gcc
CFLAGS = -Wall -O2
LDFLAGS = -lm
TARGET = sstv
SRCS = main.c sstv.c robot36.c image.c wav.c
OBJS = $(SRCS:.c=.o)
$(TARGET): $(OBJS)
$(CC) $(OBJS) -o $(TARGET) $(LDFLAGS)
%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@
clean:
rm -f $(TARGET) $(OBJS)