[go: up one dir, main page]

File: Makefile

package info (click to toggle)
ftpgrab 0.1.1-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 360 kB
  • ctags: 328
  • sloc: cpp: 2,749; makefile: 59
file content (22 lines) | stat: -rw-r--r-- 535 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
CC	=	g++
CFLAGS	=

#LIBS	=	-lefence
LIBS	=	-lpthread

OBJS	=	main.o fgstring.o fgexc.o fgftpcon.o fgfileinfo.o \
		fgfilegrab.o fgalist.o fgfshelp.o fgpickall.o \
		fgdlist.o fgdlaction.o fgactioni.o fgfilelist.o \
		fgpickallsync.o fgdelaction.o fgfpicki.o fgpickbest.o \
		fgscomp.o fgicomp.o fgbdfname.o fgmrank.o fglogger.o \
		fgdyymmddcomp.o fgfncomp.o fgpickregexp.o \
		fgpickregexpsync.o fgconi.o fgcharcomp.o

.cc.o:
		$(CC) -c $*.cc $(CFLAGS)

ftpgrab:	$(OBJS)
		$(CC) -o ftpgrab $(OBJS) $(LIBS)

clean:
		rm -f *.o ftpgrab