File: Makefile.am

package info (click to toggle)
fenix 0.92a.dfsg1-12
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 8,492 kB
  • sloc: ansic: 42,357; sh: 3,474; perl: 527; makefile: 180; cpp: 19
file content (31 lines) | stat: -rw-r--r-- 1,168 bytes parent folder | download | duplicates (5)
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
bin_PROGRAMS = fxi

.rc.o:
	$(WINDRES) $< -I../../include -o $@

INCLUDES = $(COMMON_CFLAGS) $(SDL_CFLAGS) -I../../include -I../inc -DDEBUG

fxi_LDADD = $(SDL_LIBS) $(COMMON_LIBS) -lz -lpng -lSDL_mixer

SOURCE_FILES = main.c dcbr.c instance.c strings.c \
              i_main.c i_debug.c i_func.c \
	          g_main.c g_maps.c g_blit.c g_texts.c g_pal.c g_draw.c \
		      g_systexts.c g_console.c g_scroll.c g_flic.c g_mode7.c \
		      img_png.c img_pcx.c sound.c pathfind.c fnc_exports.c \
		      g_conversion.c g_font.c g_fpg.c g_blendop.c f_bgload.c \
		      f_cd.c f_sort.c fbm.c fgc.c fpl.c f_joystick.c i_copy.c  \
		      ../../common/dirs.c ../../common/regex.c \
		      ../../common/files.c ../../common/xctype.c \
		      g_profiler.c i_saveload.c \
		      scaler_scanline.c scaler_normal.c scaler_hq2x.c scaler_scale2x.c \
		      mmx_main.c mmx_hspan.c

#hacer un if con mmx para activarlo o no
noinst_HEADERS = ../inc/fxi.h    ../../include/files.h ../../include/xctype.h \
                 ../../include/offsets.h ../../include/pslang.h ../inc/fmath.h

if HAVE_WINDRES
fxi_SOURCES = $(SOURCE_FILES) fxi.rc
else
fxi_SOURCES = $(SOURCE_FILES)
endif