mirror of
git://projects.qi-hardware.com/setfont2.git
synced 2024-12-04 21:37:30 +02:00
Makefile is now generic
This commit is contained in:
parent
5c45736740
commit
56fcd90230
13
Makefile
13
Makefile
@ -1,14 +1,9 @@
|
||||
|
||||
PROJECT = setfont2
|
||||
STAGING_DIR = $(HOME)/nanonote/openwrt-xburst/staging_dir
|
||||
ROOT_DIR = $(STAGING_DIR)/target-mipsel_uClibc-0.9.30.1
|
||||
#ROOT_DIR = ""
|
||||
CC = $(STAGING_DIR)/toolchain-mipsel_gcc-4.3.3+cs_uClibc-0.9.30.1/usr/bin/mipsel-openwrt-linux-uclibc-gcc
|
||||
STRIP = $(STAGING_DIR)/toolchain-mipsel_gcc-4.3.3+cs_uClibc-0.9.30.1/usr/mipsel-openwrt-linux-uclibc/bin/strip
|
||||
#STRIP = strip
|
||||
STRIP = strip
|
||||
CFLAGS = -Wall -Os
|
||||
INCLUDES = -I. -I$(ROOT_DIR)/usr/include
|
||||
LIBS = -L$(ROOT_DIR)/usr/lib
|
||||
INCLUDES = -I. -I/usr/include
|
||||
LIBS = -L/usr/lib
|
||||
PARTS = setfont2.o
|
||||
|
||||
.c.o:
|
||||
@ -20,7 +15,7 @@ PARTS = setfont2.o
|
||||
all: $(PROJECT)
|
||||
|
||||
$(PROJECT): $(PARTS)
|
||||
$(CC) -Wl,-rpath-link=$(ROOT_DIR)/usr/lib $(DEFINES) $(LIBS) -o $(PROJECT) $(PARTS)
|
||||
$(CC) -Wl,-rpath-link=/usr/lib $(DEFINES) $(LIBS) -o $(PROJECT) $(PARTS)
|
||||
$(STRIP) $(PROJECT)
|
||||
|
||||
clean:
|
||||
|
Loading…
Reference in New Issue
Block a user