original 1.0.1 release
[xwelltris.git] / src / image / makefile.in
blob99d2cf66a07c2b171a183ac5f0b4061d3fc4b62f
1 # Image Engine for X Window
2 #
3 # Copyright (C) 1996 by Leo Khramov
4 # email: leo@pop.convey.ru
5 # Fido: 2:5030/627.15
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
18 include ../make.conf
20 @MCOMMON@
22 .SUFFIXES: .c
24 .c.o:
25 $(CC) -c $(CXXOPT) $(CPPFLAGS) -o $@ $<
27 IOBJS= \
28 sublib/SDL_error.o \
29 sublib/SDL_rwops.o \
30 sublib/SDL_surface.o \
31 sublib/SDL_to_picinfo.o \
32 sublib/IMG_gif.o \
33 image.o \
34 convert.o \
35 accel.o
36 CXXINCLUDES=$(XINC) -I./sublib
37 CXXOPT=$(CFLAGS) $(DEFS) $(DEB) $(XINC) -I. -I../include -I./sublib
40 all:: $(IOBJS)
42 clean:
43 $(RM) -f *.o
44 $(RM) -f sublib/*.o
46 FORCE: