[gimp-hdrtools] / tags / release-0.1 / Makefile Repository:
ViewVC logotype

View of /tags/release-0.1/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3 - (download) (annotate)
Fri Jan 19 19:17:55 2007 UTC (2 years, 10 months ago) by cocidius
File size: 413 byte(s)
0.1 release
    1 
    2 GIMPTOOL=gimptool-2.0
    3 
    4 CC=gcc
    5 CFLAGS=-g -O2 -Wall `$(GIMPTOOL) --cflags` -DGETTEXT_PACKAGE
    6 LD=gcc
    7 LDFLAGS=
    8 
    9 TARGET=hdrtools
   10 
   11 SRCS=\
   12 hdrtools.c
   13 
   14 OBJS=$(SRCS:.c=.o)
   15 
   16 LIBS=`$(GIMPTOOL) --libs`
   17 
   18 all: $(TARGET)
   19 
   20 $(TARGET): $(OBJS)
   21 	$(LD) $(LDFLAGS) $(OBJS) $(LIBS) -o $(TARGET)
   22 		 
   23 clean:
   24 	rm -f $(OBJS) $(TARGET)
   25 	
   26 install: all
   27 	$(GIMPTOOL) --install-bin $(TARGET)
   28 		
   29 .c.o:
   30 	$(CC) -c $(CFLAGS) $<
   31 	  
   32 rbge.o: rgbe.c

ViewVC Help
Powered by ViewVC 1.0.4