mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 05:05:20 -05:00
moved X11-specific files into a separate subdir to keep root clean for
target files git-svn-id: svn://svn.rockbox.org/rockbox/trunk@282 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c1543511b3
commit
3caa3c0871
17 changed files with 0 additions and 0 deletions
|
|
@ -1,82 +0,0 @@
|
|||
############################################################################
|
||||
# __________ __ ___.
|
||||
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
# \/ \/ \/ \/ \/
|
||||
# $Id$
|
||||
#
|
||||
# Copyright (C) 2002 by Daniel Stenberg <daniel@haxx.se>
|
||||
#
|
||||
# All files in this archive are subject to the GNU General Public License.
|
||||
# See the file COPYING in the source tree root for full license agreement.
|
||||
#
|
||||
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||
# KIND, either express or implied.
|
||||
#
|
||||
############################################################################
|
||||
|
||||
TARGET = rockboxui
|
||||
|
||||
FIRMWAREDIR = ../firmware
|
||||
DRIVERS = $(FIRMWAREDIR)/drivers
|
||||
|
||||
CC = gcc
|
||||
RM = rm -f
|
||||
DEBUG = -g
|
||||
DEFINES = -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR -DHAVE_LCD_BITMAP
|
||||
LDFLAGS = -lX11 -lm -lXt -lXmu -lnsl
|
||||
|
||||
|
||||
UNAME := $(shell uname)
|
||||
ifeq ($(UNAME),Linux)
|
||||
INCLUDES = -I/usr/X11R6/include -I$(DRIVERS) -I$(FIRMWAREDIR)
|
||||
LIBDIRS = -L/usr/X11R6/lib
|
||||
else
|
||||
INCLUDES = -I$(FIRMWAREDIR)
|
||||
LIBDIRS =
|
||||
endif
|
||||
|
||||
CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES)
|
||||
|
||||
#SRCS = $(wildcard *.c)
|
||||
|
||||
SRCS = screenhack.c uibasic.c resources.c visual.c lcd.c lcd-x11.c \
|
||||
button-x11.c chartables.c tetris.c app.c
|
||||
|
||||
OBJS := $(SRCS:c=o)
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
clean:
|
||||
$(RM) $(OBJS) *~ core $(TARGET) $(CLIENTS)
|
||||
$(RM) -r $(DEPS)
|
||||
|
||||
distclean: clean
|
||||
$(RM) config.cache
|
||||
|
||||
lcd.o: $(DRIVERS)/lcd.c
|
||||
$(CC) $(CFLAGS) -c $< -o $@
|
||||
|
||||
chartables.o: $(FIRMWAREDIR)/chartables.c
|
||||
$(CC) $(CFLAGS) -c $< -o $@
|
||||
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -c $<
|
||||
|
||||
$(TARGET): $(OBJS)
|
||||
$(CC) -o $(TARGET) $(LIBDIRS) $(LDFLAGS) $(OBJS)
|
||||
|
||||
DEPS:=.deps
|
||||
|
||||
$(DEPS)/%.d: %.c
|
||||
@$(SHELL) -c 'if [ ! -d $(DEPS) ]; then \
|
||||
echo Creating the dependency directory: $(DEPS); \
|
||||
mkdir $(DEPS); fi'
|
||||
@echo "Updating Dependencies for $<"
|
||||
@$(SHELL) -ec '$(CC) -MM $(CFLAGS) $< \
|
||||
|sed '\''s/\($*\)\.o[ :]*/\1.o $(<:%.c=%.d) : /g'\'' > $@; \
|
||||
[ -s $@ ] || rm -f $@'
|
||||
|
||||
-include $(SRCS:%.c=$(DEPS)/%.d)
|
||||
Loading…
Add table
Add a link
Reference in a new issue