mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
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)
13 lines
368 B
Text
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
|