Skip to content

Commit

Permalink
Added implicit compile rule explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
bubeck committed Oct 25, 2024
1 parent 58f9134 commit ad1ceee
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions example/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,16 @@ extract:

compile:
../lv_i18n.js compile -l en-GB -t "translations/*.yml" -o .
ls -l
tree

compile-optimized:
../lv_i18n.js compile --optimize -l en-GB -t "translations/*.yml" -o .

main.o: main.c
$(CC) -c -o main.o main.c

lv_i18n.o: lv_i18n.c
$(CC) -c -o lv_i18n.o lv_i18n.c

main: main.o lv_i18n.o
$(CC) -o main main.o lv_i18n.o

Expand Down

0 comments on commit ad1ceee

Please sign in to comment.