[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[MiNT] [PATCH] Add actrl binary to GENFILES.



Commit message:

Add actrl binary to GENFILES so it can be automatically deleted by
"make distclean".
Contributed by David Galvez.
Index: sys/xdd/audio/Makefile
===================================================================
RCS file: /mint/freemint/sys/xdd/audio/Makefile,v
retrieving revision 1.8
diff -u -8 -r1.8 Makefile
--- sys/xdd/audio/Makefile	9 Oct 2014 11:42:51 -0000	1.8
+++ sys/xdd/audio/Makefile	19 Nov 2014 17:51:55 -0000
@@ -22,17 +22,17 @@
 INCLUDES = -I$(top_srcdir)
 DEFINITIONS = -D__KERNEL_XDD__
 
 LD = $(CC) -nostdlib -Wl,--entry -Wl,_init
 LIBS = $(LIBKERN) -lgcc
 CPU = 020-60
 
 # default definitions
-SGENFILES = $(TARGET)
+SGENFILES = $(TARGET) actrl
 OBJS = $(COBJS:.c=.o) $(SOBJS:.S=.o)
 
 $(TARGET): $(OBJS) $(LIBKERNTARGET)
 	$(LD) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
 
 actrl:
 	$(CC) $(MODEL) $(OPTS) $(WARN) actrl.c -o $@