Subversion Repositories Shiroi

Rev

Rev 2 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 43
Line 1... Line 1...
1
# $Id: Makefile 2 2024-08-28 08:12:18Z nishi $
1
# $Id: Makefile 43 2024-09-02 13:04:22Z nishi $
2
 
2
 
3
PWD = `pwd`
3
PWD = `pwd`
4
PLATFORM = generic
4
PLATFORM = generic
5
 
5
 
6
FLAGS= PWD=$(PWD) PLATFORM=$(PLATFORM)
6
FLAGS= PWD=$(PWD) PLATFORM=$(PLATFORM)
Line 19... Line 19...
19
 
19
 
20
./ROM::
20
./ROM::
21
	$(MAKE) -C $@ $(FLAGS)
21
	$(MAKE) -C $@ $(FLAGS)
22
 
22
 
23
format:
23
format:
24
	clang-format --verbose -i `find Emulator -name "*.c" -or -name "*.h"`
24
	clang-format --verbose -i `find Emulator -name "*.c" -or -name "*.h"` ROM/basic.c
25
 
25
 
26
clean:
26
clean:
27
	$(MAKE) -C ./Emulator $(FLAGS) clean
27
	$(MAKE) -C ./Emulator $(FLAGS) clean
28
	$(MAKE) -C ./ROM $(FLAGS) clean
28
	$(MAKE) -C ./ROM $(FLAGS) clean