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.
23 lines
296 B
23 lines
296 B
5 years ago
|
LIBS=
|
||
|
|
||
|
OSNAME := $(shell uname -s)
|
||
|
|
||
|
ifeq ($(OSNAME), OpenBSD)
|
||
|
LIBS += -lkvm
|
||
|
LDFLAGS += -I/usr/local/include -L/usr/local/lib -L/usr/X11R6/lib
|
||
|
endif
|
||
|
|
||
|
export CFLAGS = -g -ggdb3 -O
|
||
|
|
||
|
export PKGS = eina elementary
|
||
|
|
||
|
export LIBS
|
||
|
|
||
|
export LDFLAGS
|
||
|
|
||
|
default:
|
||
|
$(MAKE) -C src
|
||
|
|
||
|
clean:
|
||
|
$(MAKE) -C src clean
|