blob: 0a4928288a160b20806c4fcde493e1956b575b15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
CFLAGS = @BUILD_LIB_STATIC@ @GLOBAL_CFLAGS@
EXTRA_DIST =
noinst_LTLIBRARIES = libspudec.la
libspudec_la_SOURCES = #spudec.c
noinst_HEADERS = spudec.h
debug:
$(MAKE) CFLAGS="$(DEBUG_CFLAGS)"
mostlyclean-generic:
-rm -f *~ \#* .*~ .\#*
maintainer-clean-generic:
-@echo "This command is intended for maintainers to use;"
-@echo "it deletes files that may require special tools to rebuild."
-rm -f Makefile.in
|