diff options
Diffstat (limited to 'modules/Makefile')
| -rwxr-xr-x | modules/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/Makefile b/modules/Makefile index a3e5588..b8c86b8 100755 --- a/modules/Makefile +++ b/modules/Makefile @@ -11,6 +11,11 @@ modPipe: gcc $(CFLAGS) -fPIC -I../include `sdl-config --cflags` -c modPipe.c -o modPipe.o gcc $(CFLAGS) -I../include -shared -fPIC -o modPipe.so modPipe.o list.o +modWall: + gcc $(CFLAGS) -fPIC -I../include `sdl-config --cflags` -c list.c -o list.o + gcc $(CFLAGS) -fPIC -I../include `sdl-config --cflags` -c modWall.c -o modWall.o + gcc $(CFLAGS) -I../include -shared -fPIC -o modWall.so modWall.o list.o + clean: rm -rf *.o rm -rf *.so |