You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
817 B
26 lines
817 B
# -------------------------------------------------------------- |
|
|
|
# umpf... |
|
|
|
OPTS = -Wall -g -DDEBUG_LEVEL=1 |
|
DEPS = Makefile |
|
|
|
all: osc-joy osc2cursor text2osc |
|
|
|
# -------------------------------------------------------------- |
|
|
|
osc2cursor: osc2cursor.c ${DEPS} functions/libpocosc.a |
|
gcc ${OPTS} $< functions/libpocosc.a -llo -lcurses -o $@ |
|
|
|
osc-joy: osc-joy.c ${DEPS} functions/libpocosc.a |
|
gcc ${OPTS} $< functions/libpocosc.a -llo -o $@ |
|
|
|
text2osc: text2osc.c ${DEPS} functions/libpocosc.a |
|
gcc ${OPTS} $< functions/libpocosc.a -llo -o $@ |
|
|
|
# -------------------------------------------------------------- |
|
|
|
showbuttons: showbuttons.c functions/libpocosc.a ${DEPS} |
|
gcc ${OPTS} $< functions/libpocosc.a -llo -lcurses -o $@ |
|
|
|
# --------------------------------------------------------------
|
|
|