# Makefile for VgaGames: random/

all: random.o

clean:
	rm -f *.o


random.o: random.c random.h
	$(CC) $(CFLAGS) $(SOFLAGS) -c random.c

