ports/lang/scratch/files/patch-src_plugins_scratch_Makefile
Takeshi Mutoh 1b05393b7d
lang/scratch: Add Scratch 1.4.0.7, is a new programing language
that makes it easy to create your own interactive stories, animations,
games, music, and art - and share your creations on the web.

WWW:		https://scratch.mit.edu/
PR:		216811
Requested by:	Takeshi Mutoh <takeshi.mutoh@gmail.com>
Approved by:	hrs (mentor)
2023-05-07 01:10:52 +09:00

13 lines
368 B
Text

--- src/plugins/scratch/Makefile.orig 2011-06-03 14:56:20 UTC
+++ src/plugins/scratch/Makefile
@@ -1,8 +1,8 @@
all: clean build
build:
- gcc $(CFLAGS) -fPIC -c *.c
- gcc -shared *.o -o ../../../Plugins/so.ScratchPlugin
+ $(CC) $(CFLAGS) -fPIC -c *.c
+ $(CC) -shared *.o -o ../../../Plugins/so.ScratchPlugin
clean:
rm -f *.o ../../../Plugins/so.ScratchPlugin