premiere version du translateur Joystick -> Laser

This commit is contained in:
2020-10-09 20:58:37 +02:00
parent 7d961bc79f
commit a2e28adcd9
7 changed files with 330 additions and 0 deletions

12
specific/Makefile Normal file
View File

@@ -0,0 +1,12 @@
OPTS = -Wall -g -DDEBUG_LEVEL=0
laserblast.o: laserblast.c Makefile
gcc -c ${OPTS} $<
joy2laser: joy2laser.c Makefile laserblast.o
gcc ${OPTS} $< laserblast.o ../functions/libpocosc.a -llo -o $@