You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
399 B
30 lines
399 B
.SILENT: displayobj
|
|
-include ../Makefile.rules
|
|
|
|
OBJBASE = wince_dialogs.o \
|
|
wince_gfx.o \
|
|
wince_gps.o \
|
|
wince_main.o
|
|
|
|
OBJ = $(OBJBASE)
|
|
|
|
SRC = $(OBJBASE:%.o=%.c)
|
|
|
|
all: libwince.a wince.rsc
|
|
|
|
libwince.a: $(OBJ)
|
|
$(AR) rcs libwince.a $(OBJ)
|
|
|
|
dep: $(SRC)
|
|
$(CC) -MM $(SRC) $(CFLAGS) > $(DEPENDFILE)
|
|
|
|
clean:
|
|
rm -rf *.o
|
|
rm -rf *.a
|
|
rm -rf *~
|
|
rm -rf *.rsc
|
|
rm -rf .depend
|
|
|
|
displayobj:
|
|
echo $(OBJ)
|