File: Makefile

package info (click to toggle)
gxanim 0.50-1
  • links: PTS
  • area: contrib
  • in suites: potato
  • size: 212 kB
  • ctags: 301
  • sloc: ansic: 1,910; makefile: 64
file content (35 lines) | stat: -rw-r--r-- 514 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
23
24
25
26
27
28
29
30
31
32
33
34
35
CC = gcc
CFLAGS = -O2 `gtk-config --cflags`
INSTALLDIR = /usr/local/bin

LIBS =  `gtk-config --libs`
OBJS = runxanim.o gxanim.o memory.o filesel.o util.o \
	 valxanim.o control.o windows.o config.o prefs.o \
	 history.o gtkmovie.o

FINAL = gxanim
DISTRIB = gxanim-0.50.tar


all : gxanim

gxanim : ${OBJS}
	${CC} ${CFLAGS} ${LIBS} ${OBJS} -o ${FINAL}

${OBJS} : header.h

complete :
	make proper
	make install

proper :
	make clean
	make 

clean :
	rm -f *.o
	rm -f ${FINAL}

install :
	mv ${FINAL} ${INSTALLDIR}