############################################################################ # FunktrackerGOLD - By Jason Nunn # Copyright (C) 1996,1998 Jason Nunn # # FunktrackerGOLD now comes under the GNU General Public License. Please # read the COPYING notice in this distribution. ############################################################################ LDFLAGS+=$(EXTRA_LDFLAGS) -lncurses -lm CFLAGS+=$(EXTRA_CFLAGS) all: funkgold ############################### OBJ_FT = dsp_mixxer.o funktracker.o funkload.o funkgold_misc.o \ funkgold_dir.o funkgold_sm.o funkgold_se.o funkgold_pe.o \ funkgold_trac.o funkgold.o funkgold: $(OBJ_FT) $(CC) -o funkgold $(OBJ_FT) $(LDFLAGS) strip funkgold ############################### clean: rm -f *.o funkgold release: make rm -f *.o