|
...
|
...
|
@@ -8,6 +8,7 @@ HFILES=\
|
|
8
|
8
|
/sys/include/npe/stdio.h\
|
|
9
|
9
|
src/devices/audio.h\
|
|
10
|
10
|
src/devices/controller.h\
|
|
|
11
|
+ src/devices/datetime.h\
|
|
11
|
12
|
src/devices/file.h\
|
|
12
|
13
|
src/devices/mouse.h\
|
|
13
|
14
|
src/devices/screen.h\
|
|
...
|
...
|
@@ -32,19 +33,19 @@ bin:
|
|
32
|
33
|
%.rom:Q: %.tal bin/uxnasm
|
|
33
|
34
|
bin/uxnasm $stem.tal $target >/dev/null
|
|
34
|
35
|
|
|
35
|
|
-bin/uxncli: file.$O system.$O uxncli.$O uxn.$O
|
|
|
36
|
+bin/uxncli: file.$O datetime.$O system.$O uxncli.$O uxn.$O
|
|
36
|
37
|
$LD $LDFLAGS -o $target $prereq
|
|
37
|
38
|
|
|
38
|
39
|
bin/uxnasm: uxnasm.$O
|
|
39
|
40
|
$LD $LDFLAGS -o $target $prereq
|
|
40
|
41
|
|
|
41
|
|
-bin/uxnemu: audio.$O controller.$O file.$O mouse.$O screen.$O system.$O uxn.$O uxnemu.$O
|
|
|
42
|
+bin/uxnemu: audio.$O controller.$O datetime.$O file.$O mouse.$O screen.$O system.$O uxn.$O uxnemu.$O
|
|
42
|
43
|
$LD $LDFLAGS -o $target $prereq
|
|
43
|
44
|
|
|
44
|
45
|
(uxnasm|uxncli|uxnemu|uxn)\.$O:R: src/\1.c
|
|
45
|
46
|
$CC $CFLAGS -Isrc -o $target src/$stem1.c
|
|
46
|
47
|
|
|
47
|
|
-(audio|controller|file|mouse|screen|system)\.$O:R: src/devices/\1.c
|
|
|
48
|
+(audio|controller|datetime|file|mouse|screen|system)\.$O:R: src/devices/\1.c
|
|
48
|
49
|
$CC $CFLAGS -Isrc -o $target src/devices/$stem1.c
|
|
49
|
50
|
|
|
50
|
51
|
nuke:V: clean
|