blob: 4bf1c2cea89b6932e08c5bb2d7d515d528c372f9 (
plain) (
tree)
|
|
root := ../../..
subdirs :=
clean-targets := none
targets := micros
# set bin so we don't build these .o's into shared lib
bin := noshare
include ${root}/Makefile.cfg
CPPFLAGS += -I.
CPPFLAGS += `gtk-config --cflags` -I/usr/include
LDFLAGS += `gtk-config --libs`
cpp += micros.cpp
cpp += microssig.cpp
include ${root}/Makefile.post
micros: $(o)
$(CROSS_COMPILE)$(CC) -o $@ $(o) -L$(root)/lib $(LIBS) -lgtk -lgdk -rdynamic -lgmodule -lglib -ldl -L/usr/X11R6/lib -lXi -lXext -lX11 -lm
|