IEEE 802.15.4 subsystem
Sign in or create your account | Project List | Help
IEEE 802.15.4 subsystem Git Source Tree
Root/
| Source at commit 0ff0c31c3ff24d40c5ee4d2391cb63f83e2b6e7f created 7 years 3 months ago. By Werner Almesberger, atusb/Makefile (f, b, upload): convenience targets | |
|---|---|
| 1 | # |
| 2 | # atrf-path/Makefile - Measure path characteristics |
| 3 | # |
| 4 | # Written 2011 by Werner Almesberger |
| 5 | # Copyright 2011 Werner Almesberger |
| 6 | # |
| 7 | # This program is free software; you can redistribute it and/or modify |
| 8 | # it under the terms of the GNU General Public License as published by |
| 9 | # the Free Software Foundation; either version 2 of the License, or |
| 10 | # (at your option) any later version. |
| 11 | # |
| 12 | |
| 13 | |
| 14 | MAIN = atrf-path |
| 15 | |
| 16 | include ../Makefile.common |
| 17 | |
| 18 | CFLAGS_host += $(shell sdl-config --cflags) |
| 19 | MACROS_host += -DHAVE_GFX |
| 20 | LDLIBS_host += $(shell sdl-config --libs) -lSDL_gfx |
| 21 | OBJS_host = gui.o |
| 22 | |
| 23 | CFLAGS_ben_jlime += $(shell sdl-config --cflags) |
| 24 | MACROS_ben_jlime += -DHAVE_GFX |
| 25 | LDLIBS_ben_jlime += -lSDL -lSDL_gfx |
| 26 | OBJS_ben_jlime = gui.o |
| 27 | |
| 28 | $(MAIN): $(OBJS_$(TARGET)) |
| 29 | |
