FILES = test.o joy.o

joy.prg:  $(FILES) 
        cc -o test.prg -VGEM $(FILES)

test.o:    test.c joystick.h
joy.o:     joy.c test.c joystick.h

