diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-15 13:41:51 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-15 13:41:51 +0000 |
commit | ae1ca0772cea076c0098a83c15de2581e8aee3f5 (patch) | |
tree | 3df8809b28956670bca8ba3b447409c5d8bdfdd5 /tools/aewm-drakx/Makefile | |
parent | 1e19a1f7ea181f9fd40e0f81ac3b7fda8563d391 (diff) | |
download | drakx-backup-do-not-use-ae1ca0772cea076c0098a83c15de2581e8aee3f5.tar drakx-backup-do-not-use-ae1ca0772cea076c0098a83c15de2581e8aee3f5.tar.gz drakx-backup-do-not-use-ae1ca0772cea076c0098a83c15de2581e8aee3f5.tar.bz2 drakx-backup-do-not-use-ae1ca0772cea076c0098a83c15de2581e8aee3f5.tar.xz drakx-backup-do-not-use-ae1ca0772cea076c0098a83c15de2581e8aee3f5.zip |
- add and use aewm-drakx
- add some "skip" title on help/logo/steps windows so that aewm-drakx know they don't need keyboard focus
- add some more title to ease debugging (when aewm-drakx is in debug mode)
Diffstat (limited to 'tools/aewm-drakx/Makefile')
-rw-r--r-- | tools/aewm-drakx/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/aewm-drakx/Makefile b/tools/aewm-drakx/Makefile new file mode 100644 index 000000000..ed1b95ecf --- /dev/null +++ b/tools/aewm-drakx/Makefile @@ -0,0 +1,10 @@ +CFLAGS = -Wall -Os +LDFLAGS = -L/usr/X11R6/lib -lX11 +CFILES = $(wildcard *.c) +OFILES = $(CFILES:%.c=%.o) +GOAL = aewm-drakx + +$(GOAL): $(OFILES) + +clean: + rm -f $(GOAL) $(OFILES) TAGS *~ |