Skip to content

Commit 69f013e

Browse files
xiaoxiang781216Ouss4
authored andcommitted
build: Remve the unnecessary .gitignore
Signed-off-by: Xiang Xiao <[email protected]>
1 parent 40c325a commit 69f013e

File tree

266 files changed

+27
-2671
lines changed

Some content is hidden

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

266 files changed

+27
-2671
lines changed

.gitignore

+20-15
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
1-
.depend
2-
Make.dep
3-
*.o
41
*.a
2+
*.adb
3+
*.asm
54
*.d
5+
*.dSYM
6+
*.exe
7+
*.hobj
68
*.i
9+
*.lib
10+
*.lst
11+
*.o
12+
*.obj
13+
*.rel
14+
*.src
15+
*.swp
16+
*.sym
717
*~
8-
.swp
9-
.*.swp
10-
core
11-
.gdbinit
12-
cscope.out
13-
/Kconfig
18+
.built
19+
.depend
20+
/*.lock
1421
/bin
22+
/boot_romfsimg.h
1523
/external
16-
/.context
17-
/.config
18-
/*.lib
19-
/*.lock
24+
/Kconfig
2025
/romfs.img
21-
/boot_romfsimg.h
2226
/symtab_apps.c
23-
/*/*/.built
27+
cscope.out
28+
Make.dep

builtin/.gitignore

-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,2 @@
1-
/.context
2-
/.depend
3-
/.built
4-
/Make.dep
51
/builtin_list.h
62
/builtin_proto.h
7-
/*.src
8-
/*.obj
9-
/*.lst
10-
/*.asm
11-
/*.sym

canutils/libcanard/.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
/.built
21
/libcanard-*

canutils/libobd2/.gitignore

-2
This file was deleted.

examples/abntcodi/.gitignore

-11
This file was deleted.

examples/adc/.gitignore

-11
This file was deleted.

examples/adxl372_test/.gitignore

-11
This file was deleted.

examples/ajoystick/.gitignore

-11
This file was deleted.

examples/alarm/.gitignore

-11
This file was deleted.

examples/apa102/.gitignore

-11
This file was deleted.

examples/apds9960/.gitignore

-11
This file was deleted.

examples/audio_rttl/.gitignore

-11
This file was deleted.

examples/bastest/.gitignore

-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,2 @@
1-
/Make.dep
2-
/.depend
3-
/.built
41
/romfs.img
52
/romfs.h
6-
/*.asm
7-
/*.obj
8-
/*.rel
9-
/*.lst
10-
/*.sym
11-
/*.adb
12-
/*.lib
13-
/*.src

examples/battery/.gitignore

-12
This file was deleted.

examples/bmp180/.gitignore

-11
This file was deleted.

examples/bridge/.gitignore

-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
1-
/Make.dep
2-
/.depend
3-
/.built
41
/bridge_config.h
52
/host1
63
/host2
7-
/*.exe
8-
/*.asm
9-
/*.obj
10-
/*.rel
11-
/*.lst
12-
/*.sym
13-
/*.adb
14-
/*.lib
15-
/*.src

examples/buttons/.gitignore

-11
This file was deleted.

examples/calib_udelay/.gitignore

-11
This file was deleted.

examples/can/.gitignore

-11
This file was deleted.

examples/canard/.gitignore

-11
This file was deleted.

examples/cctype/.gitignore

-11
This file was deleted.

examples/charger/.gitignore

-11
This file was deleted.

examples/chat/.gitignore

-11
This file was deleted.

examples/chrono/.gitignore

-12
This file was deleted.

examples/configdata/.gitignore

-11
This file was deleted.

examples/cpuhog/.gitignore

-11
This file was deleted.

examples/cromfs/.gitignore

-11
Original file line numberDiff line numberDiff line change
@@ -1,12 +1 @@
1-
/Make.dep
2-
/.depend
3-
/.built
4-
/*.asm
5-
/*.obj
6-
/*.rel
7-
/*.lst
8-
/*.sym
9-
/*.adb
10-
/*.lib
11-
/*.src
121
/cromfs.c

examples/dac/.gitignore

-11
This file was deleted.

examples/dhcpd/.gitignore

-12
This file was deleted.

examples/dhcpd/Makefile.host

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
include $(TOPDIR)/Make.defs
3939

40-
OBJS = host.o1 dhcpd.o1
40+
OBJS = host.hobj dhcpd.hobj
4141
BIN = dhcpd
4242

4343
HOSTCFLAGS += -DCONFIG_NETUTILS_DHCPD_HOST=1
@@ -49,11 +49,11 @@ VPATH = $(TOPDIR)/netutils/dhcpd:.
4949
all: $(BIN)
5050
.PHONY: clean context clean_context distclean
5151

52-
$(OBJS): %.o1: %.c
52+
$(OBJS): %.hobj: %.c
5353
$(HOSTCC) -c $(HOSTCFLAGS) $< -o $@
5454

5555
$(BIN): $(OBJS)
5656
$(HOSTCC) $(HOSTLDFLAGS) $^ -o $@
5757

5858
clean:
59-
@rm -f $(BIN).* *.o1 *~
59+
@rm -f $(BIN).* *.hobj *~

0 commit comments

Comments
 (0)