Skip to content

Commit c36b0d6

Browse files
author
Matt Waltz
authored
Merge branch 'master' into lib-build-reorganization
2 parents 3cfbea7 + 8facf51 commit c36b0d6

File tree

77 files changed

+3277
-2106
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+3277
-2106
lines changed

.gitattributes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.c text eol=lf
2+
*.h text eol=lf
3+
*.asm text eol=lf
4+
*.inc text eol=lf
5+
*.ini text eol=lf
6+
*.log text eol=lf
7+
*.bat text eol=lf
8+
*.txt text eol=lf
9+
*.md text eol=lf

CEdev/bin/main_makefile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LIBHEADER_ASM := libheader.asm
77
#----------------------------
88

99
SHELL := cmd.exe
10-
VERSION := 6.9
10+
VERSION := 7.1
1111

1212
#----------------------------
1313
# Try not to edit anything below these lines unless you know what you are doing
@@ -23,6 +23,7 @@ CD = cd
2323
RM = del /F /Q
2424
CP = copy /Y
2525
NULL = >nul 2>&1
26+
RM_DIR = rmdir /s /q
2627

2728
#Generate the default names for input and object files
2829
TARGETHEX := $(TARGET).hex
@@ -256,8 +257,14 @@ $(OBJDIR)/%.obj :
256257

257258
#This rule cleans up everything
258259
clean :
259-
@$(RM) $(call WINPATH,$(BINDIR)/$(TARGETHEX) $(BINDIR)/$(TARGETTYPE) $(BINDIR)/$(TARGETMAP) $(OBJECTS) $(OBJDIR)/*.src $(OBJDIR)/$(ICON_ASM)) $(NULL)
260+
@$(RM) $(call WINPATH,$(BINDIR)/$(TARGETHEX) $(BINDIR)/$(TARGETTYPE) $(BINDIR)/$(TARGETMAP) $(OBJECTS) $(OBJDIR)/*.src $(OBJDIR)/*.asm) $(NULL)
260261
@echo Cleaned build files.
262+
263+
#This rule cleans up everything except the executable
264+
clean-leave-executable :
265+
@$(RM) $(call WINPATH,$(BINDIR)/$(TARGETHEX) $(BINDIR)/$(TARGETMAP)) $(NULL)
266+
@$(RM_DIR) $(call WINPATH,$(OBJDIR)) $(NULL)
267+
@echo Cleaned $(TARGET)
261268

262269
version :
263270
@echo C CE SDK Version $(VERSION)

CEdev/examples/demo_0/bin/DEMO0.8xp

5 Bytes
Binary file not shown.

CEdev/examples/demo_1/bin/DEMO1.8xp

5 Bytes
Binary file not shown.

CEdev/examples/demo_2/bin/DEMO2.8xp

5 Bytes
Binary file not shown.

CEdev/examples/demo_3/bin/DEMO3.8xp

5 Bytes
Binary file not shown.

CEdev/examples/demo_4/bin/DEMO4.8xp

5 Bytes
Binary file not shown.

CEdev/examples/demo_5/bin/DEMO5.8xp

5 Bytes
Binary file not shown.

CEdev/examples/demo_6/bin/DEMO6.8xp

5 Bytes
Binary file not shown.

CEdev/examples/demo_7/bin/DEMO7.8xp

5 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)