mirror of
https://github.com/netfun2000/lcd4linux.git
synced 2026-02-27 09:44:34 +08:00
590366a013
MatrixOrbital driver finished git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@6 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
13 lines
340 B
Makefile
13 lines
340 B
Makefile
CC=gcc -m486 -g -Wall -I. -DVERSION=\"V0.5\"
|
|
|
|
all: lcd4linux
|
|
|
|
#lcd4linux: lcd4linux.c config.c lcd2041.c system.c isdn.c filter.c Makefile
|
|
# ${CC} -lm -o lcd4linux lcd4linux.c config.c lcd2041.c system.c isdn.c filter.c
|
|
|
|
lcd4linux: display.c MatrixOrbital.c
|
|
${CC} -lm -o lcd4linux display.c MatrixOrbital.c
|
|
|
|
clean:
|
|
rm -f lcd4linux *.o *~
|