Ignore:
Timestamp:
2010-09-01T17:25:37+12:00 (14 years ago)
Author:
mdewsnip
Message:

Lots of improvements, particularly to Windows makefiles.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gs2-core/common-src/packages/sqlite/Makefile

    r21540 r22832  
     1###########################################################################
     2#
     3# Makefile -- Makefile for common-src/packages/sqlite
     4#
     5# By Michael Dewsnip
     6#
     7# Copyright (C) 2010  DL Consulting Ltd.
     8#
     9###########################################################################
     10
    111
    212all:
    3     (cd sqlite-amalgamation-3.5.9 && $(MAKE) all install)
     13    cd sqlite-amalgamation-3.5.9 && $(MAKE) all install
     14
     15install:
     16    cd sqlite-amalgamation-3.5.9 && $(MAKE) install
    417
    518clean:
    6     (cd sqlite-amalgamation-3.5.9 && $(MAKE) clean)
    7 
    8 distclean:
    9     (cd sqlite-amalgamation-3.5.9 && $(MAKE) distclean)
    10 
    11 install:
    12     @echo SQLite installed
     19    cd sqlite-amalgamation-3.5.9 && $(MAKE) clean
Note: See TracChangeset for help on using the changeset viewer.