Back to project.

Raw source file available here .

CC=gcc 
CFLAGS=-Wall -g -I/usr/include/python3.14 -lpython3.14
LDFLAGS=-lm
OBJS=pgs.o
TARGET=pgs


upstreams:
ssh -f -N -L 3028:127.0.0.1:3028 molodetz.nl
ssh -f -N -L 8082:127.0.0.1:8082 molodetz.nl


build:
$(CC) pgs.c $(CFLAGS) $(LDFLAGS) -o $(TARGET)

run: build
./$(TARGET)

clean:
rm -f $(OBJS) $(TARGET)