mirror of
https://github.com/gwenhael-le-moine/x49gp.git
synced 2024-12-25 21:58:49 +01:00
move actual code under ./src/
This commit is contained in:
parent
8aa4c62d88
commit
044a165758
142 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -1,7 +1,7 @@
|
|||
# $Id: Makefile,v 1.29 2008/12/11 12:18:17 ecd Exp $
|
||||
#
|
||||
|
||||
SRC_DIR = .
|
||||
SRC_DIR = ./src
|
||||
|
||||
X49GP_DEBUG = \
|
||||
-DDEBUG_X49GP_MODULES \
|
||||
|
@ -184,14 +184,14 @@ _dir_qemu: dummy
|
|||
%.o: %.c
|
||||
$(CC) $(CFLAGS) $(X49GP_CFLAGS) -o $@ -c $<
|
||||
|
||||
block-vvfat.o: block-vvfat.c
|
||||
$(SRC_DIR)/block-vvfat.o: $(SRC_DIR)/block-vvfat.c
|
||||
$(CC) $(CFLAGS) $(X49GP_CFLAGS) -fno-aggressive-loop-optimizations -o $@ -c $<
|
||||
|
||||
clean-qemu:
|
||||
$(MAKE) -C $(QEMU) -f Makefile-small clean
|
||||
|
||||
clean: clean-qemu
|
||||
rm -f *.o core *~ .depend
|
||||
rm -f $(SRC_DIR)/*.o core *~ .depend
|
||||
|
||||
distclean: clean
|
||||
$(MAKE) -C $(QEMU) -f Makefile-small distclean
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue