source: trunk/server/common/oursrc/php_scripts/Makefile.in @ 1553

Last change on this file since 1553 was 1234, checked in by mitchb, 15 years ago
Package the php scripts.so logging module stupid_server_install_kludges--;
File size: 473 bytes
Line 
1CC = @CC@
2CFLAGS = @CFLAGS@
3prefix = @prefix@
4exec_prefix = @exec_prefix@
5bindir = @bindir@
6MODS = scripts
7
8all-local: $(patsubst %,.libs/%.so,$(MODS))
9
10.libs/%.so: %.c
11        $(CC) $(CFLAGS) -c $<
12
13install:
14        install -p -m755 -D .libs/scripts.so $(DESTDIR)/usr/lib64/php/modules/scripts.so
15
16clean:
17        rm -f $(MODS:=.so) $(MODS:=.o) $(MODS:=.la) $(MODS:=.lo) $(MODS:=.slo) $(MODS:=.lai)
18        rm -rf .libs modules
19
20distclean: clean
21        rm -f configure config.* Makefile
22        rm -rf auto*.cache
Note: See TracBrowser for help on using the repository browser.