Stripping SO files after building them.

Added some copyright/info to Makefile comments.
This commit is contained in:
William Kendrick 2007-07-24 23:44:32 +00:00
parent cc1c8fda17
commit 23f586a668

View file

@ -1,12 +1,21 @@
# Makefile for magic plugins
# Makefile for Tux Paint default 'Magic' tool plugins
# Tux Paint - A simple drawing program for children.
# Copyright (c) 2007-2007 by Bill Kendrick and others
# bill@newbreedsoftware.com
# http://www.tuxpaint.org/
# July 2007 - July 24, 2007
SO_TYPE=so
# Places to pick up Tux Paint Magic Plugin Dev header and SDL headers
# (can't assume plugin dev stuff has been installed yet, since we're
# part of Tux Paint base, so "install-plugin-dev" probably hasn't
# been run yet; hence "-I../src/" to find 'tp_magic_api.h')
SO_TYPE=so
TP_MAGIC_CFLAGS=$(shell if [ -x tp-magic-config ] ; then tp-magic-config --cflags ; else echo -I../src/ ; fi)
SDL_CFLAGS=$(shell sdl-config --cflags)
@ -35,6 +44,7 @@ all: negative.$(SO_TYPE) \
foam.$(SO_TYPE) \
ripples.$(SO_TYPE) \
sparkles.$(SO_TYPE)
@strip *.$(SO_TYPE)
install:
cd .. ; make install-magic-plugins