diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-06-28 16:38:35 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-06-28 16:38:35 +0000 |
| commit | 2d776fcd61be168e1ff0ff2e4a5e71835e7cea19 (patch) | |
| tree | 7cf274897bf540d5332d446f583ffd066e4e2e1d /src/widget/Makefile | |
| parent | b877ae23ac5d380ab3aa48d7724045cf4883b186 (diff) | |
- prekopanie adresarovej struktury, prva cast
git-svn-id: http://opensvn.csie.org/tuxanci_ng@77 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/widget/Makefile')
| -rw-r--r-- | src/widget/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/widget/Makefile b/src/widget/Makefile new file mode 100644 index 0000000..cdb504b --- /dev/null +++ b/src/widget/Makefile @@ -0,0 +1,28 @@ + +all: widget_button.o widget_buttonimage.o widget_check.o widget_label.o widget_select.o widget_textfield.o widget_image.o + +widget_button.o: widget_button.c widget_button.h + $(CC) $(CFLAGS) -o widget_button.o -c widget_button.c + +widget_buttonimage.o: widget_buttonimage.c widget_buttonimage.h + $(CC) $(CFLAGS) -o widget_buttonimage.o -c widget_buttonimage.c + +widget_check.o: widget_check.c widget_check.h + $(CC) $(CFLAGS) -o widget_check.o -c widget_check.c + +widget_image.o: widget_image.c widget_image.h + $(CC) $(CFLAGS) -o widget_image.o -c widget_image.c + +widget_label.o: widget_label.c widget_label.h + $(CC) $(CFLAGS) -o widget_label.o -c widget_label.c + +widget_select.o: widget_select.c widget_select.h + $(CC) $(CFLAGS) -o widget_select.o -c widget_select.c + +widget_textfield.o: widget_textfield.c widget_textfield.h + $(CC) $(CFLAGS) -o widget_textfield.o -c widget_textfield.c + +clean: + rm -rf *.o + + |