File: Makefile.in

package info (click to toggle)
ppxp 0.99120923-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 2,812 kB
  • ctags: 3,704
  • sloc: ansic: 24,532; tcl: 3,992; makefile: 517; sh: 80
file content (22 lines) | stat: -rw-r--r-- 364 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
CC=	@CC@
CFLAGS=	@CFLAGS@ -I@top_srcdir@/src -I@top_srcdir@/lib -I@top_srcdir@/@SYSDIR@
OBJS=	slcompress.o pred.o base64.o md4.o md5.o

TARGET=	import.a

all:	$(TARGET)

import.a:	$(OBJS)
	ar @AFLAGS@ $@ $(OBJS)

depend:
	$(CC) $(CFLAGS) -M *.c > .depend

clean:
	rm -f $(TARGET) $(OBJS) .depend

install:

ifeq (.depend,$(wildcard .depend))
include .depend
endif