-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
65 lines (60 loc) · 1004 Bytes
/
Makefile
File metadata and controls
65 lines (60 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
OBJDIR = lib
BUILDDIR = bin
build:
@echo "Building libaries"
@make -C libfoxos
@make -C libc
@make -C libtinf
@make -C libcfg
@make -C libfoxdb
@echo "Building programs"
@make -C test
@make -C window_test
@make -C terminal
@make -C init
@make -C cat
@make -C echo
@make -C env
@make -C ls
@make -C rm
@make -C mkdir
@make -C date
@make -C install
@make -C calc
@make -C ping
@make -C shutdown
@make -C du
@make -C keymap_tool
@make -C cp
@make -C limine_install
@make -C clear
@make -C tasks
@make -C saf_extract
@make -C saf_make
@make -C foxe
@make -C touch
@make -C imgview
@make -C play
@make -C rmdir
@make -C reboot
@make -C file
@make -C if
@make -C free
@make -C smbios32
@make -C foxde
@make -C insmod
@make -C nslookup
@make -C gunzip
@make -C db_test
@make -C foxdb
@make -C syscfg
@make -C foxasm
setup:
@mkdir $(BUILDDIR)
@mkdir $(OBJDIR)
clean:
@rm -r $(BUILDDIR)
@rm -r $(OBJDIR)
@mkdir $(BUILDDIR)
@mkdir $(OBJDIR)
.PHONY: build