You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- CFLAGS += -Wall -Werror -pedantic -g
- LFLAGS += -lSDL -lSDL_mixer
-
- .PHONY: default clean
-
- default: flanger
-
- clean:
- rm -f flanger *.o
-
- flanger: hoi.c
- gcc -o flanger hoi.c $(LFLAGS) $(CFLAGS)
-
- pymodmodule.so: pymod.c
- gcc -o pymodmodule.so pymod.c -fPIC $(CFLAGS) -shared -lpython2.7 -lSDL
|