File: Makefile

package info (click to toggle)
squeak-plugins-scratch 1.4.0.2~svn.r83-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 584 kB
  • sloc: ansic: 1,360; makefile: 88; sh: 88
file content (8 lines) | stat: -rw-r--r-- 159 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
all: clean build

build:	
	gcc $(CFLAGS) -fPIC -c *.c
	gcc -shared *.o -o ../../../Plugins/so.CameraPlugin

clean:
	rm -f *.o ../../../Plugins/so.CameraPlugin