Artifact [4ee4a32049]

Artifact 4ee4a320497b0c6a8d2fbffeafce56d47eb5dc05:


CC = gcc
LDFLAGS = -shared -rdynamic -ldl -lm
CFLAGS = -Wall

net.so: net.o parse.o
	$(CC) $(LDFLAGS) -o net.so net.o parse.o
net.o: net.c net.h
parse.o: parse.c parse.h