source: trunk/neercs/Makefile.am @ 1512

Last change on this file since 1512 was 1512, checked in by sam, 11 years ago

build: fix the PS3 port by using our trig.h everywhere instead of stdlib
functions; also remove a lot of idiotic "using namespace std" from the
codebase.

File size: 1.1 KB
Line 
1
2if USE_CACA
3noinst_PROGRAMS = neercs
4endif
5
6neercs_SOURCES = \
7    neercs.cpp neercs.h \
8    \
9    video/render.cpp video/render.h \
10    video/text-render.cpp video/text-render.h \
11    video/blurh.lolfx video/blurv.lolfx video/glow.lolfx \
12    video/postfx.lolfx video/radial.lolfx video/simple.lolfx \
13    video/text.lolfx
14neercs_CPPFLAGS = @LOL_CFLAGS@ @PIPI_CFLAGS@ @CACA_CFLAGS@
15neercs_LDADD =
16neercs_LDFLAGS = $(top_builddir)/src/liblol.a \
17                 @LOL_LIBS@ @PIPI_LIBS@ @CACA_LIBS@ @UTIL_LIBS@ @PAM_LIBS@
18neercs_DEPENDENCIES = $(top_builddir)/src/liblol.a
19
20if USE_CACA
21all-local: neercs$(EXEEXT)
22        test $(MAKE_FSELF) = no || make_fself neercs$(EXEEXT) neercs.self
23endif
24
25CLEANFILES = $(noinst_PROGRAMS:%$(EXEEXT)=%.self) \
26             $(noinst_PROGRAMS:%$(EXEEXT)=%.elf) \
27             $(noinst_PROGRAMS:%$(EXEEXT)=%.exe)
28
29SUFFIXES = .lolfx
30.lolfx.o:
31        (echo "char const *"; \
32         echo "lolfx_$(notdir $(basename $(filter %.lolfx, $^))) ="; \
33         $(SED) 's/"/\\"/g' $(filter %.lolfx, $^) | \
34         $(SED) 's/\([^\r]*\).*/"\1\\n"/'; \
35         echo ";") | $(CXXCOMPILE) -xc++ -c - -o $@
36
Note: See TracBrowser for help on using the repository browser.