aboutsummaryrefslogtreecommitdiffstats
path: root/code_sniffer/phpbb/Sniffs/Commenting/FileCommentSniff.php
diff options
context:
space:
mode:
authorOpenShift guest <dachebodt@gmail.com>2013-03-03 01:44:21 -0500
committerOpenShift guest <dachebodt@gmail.com>2013-03-03 01:44:21 -0500
commiteb61edf4d1b5fd82e225ed1ac50f6310f72953f8 (patch)
treee5013e76b42670f557ea27caa7275c7865a5712c /code_sniffer/phpbb/Sniffs/Commenting/FileCommentSniff.php
parentbee4f8d8185d4ff5278be758db4ea4a814f09b4f (diff)
downloadforums-eb61edf4d1b5fd82e225ed1ac50f6310f72953f8.tar
forums-eb61edf4d1b5fd82e225ed1ac50f6310f72953f8.tar.gz
forums-eb61edf4d1b5fd82e225ed1ac50f6310f72953f8.tar.bz2
forums-eb61edf4d1b5fd82e225ed1ac50f6310f72953f8.tar.xz
forums-eb61edf4d1b5fd82e225ed1ac50f6310f72953f8.zip
[ticket/11383] Correctly revert modules added/removed by migrator
PHPBB3-11383
Diffstat (limited to 'code_sniffer/phpbb/Sniffs/Commenting/FileCommentSniff.php')
0 files changed, 0 insertions, 0 deletions
>36 37
 #******************************************************************************
 #
 # Guillaume Cottenceau (gc@mandrakesoft.com)
 #
 # Copyright 2001 Mandrakesoft
 #
 # This software may be freely redistributed under the terms of the GNU
 # public license.
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 #
 #*****************************************************************************

top_dir = ..

include $(top_dir)/Makefile.common


all: libpcmcia.a

clean:
	rm -f *.o libpcmcia.a

FLAGS = -D__linux__ -Wall -Werror -Os -fomit-frame-pointer -pipe -c -I.. -D_BSD_SOURCE


OBJS = probe.o cardmgr.o lex_config.o yacc_config.o


libpcmcia.a: $(OBJS)
	ar -cru $@ $^
	ranlib $@

$(OBJS): %.o: %.c
	$(DIET) gcc $(FLAGS) $(INCLUDES) -c $< -o $@