Ignore:
Timestamp:
05/02/06 06:35:49 (6 years ago)
Author:
flupke <flupke@…>
Children:
22b42454812c85824c87192deee05abca95400c4
Parents:
857a6261c268f3b5b020553a4ba51d93d916a9f7
git-committer:
flupke <flupke@…> (05/02/06 06:35:49)
Message:

Tout compile sans erreur, il ne reste plus qu'à combler les trous dans gamelib3/subsystems/sdl
Les makefile sont pas terribles non plus, à finir

git-svn-id:  http://kawa.selfip.org/svn/projects@299 532e76a9-45ae-c241-9c6d-8309ac6440cd

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bor/gamelib3/Makefile

    r857a626 r080ef6e  
    11export SUBSYSTEM = sdl 
    22OBJECTS = adpcm.o anigif.o bitmap.o control.o draw.o font.o loadimg.o packfile.o palette.o savepcx.o screen.o soundmix.o sprite.o spriteq.o ssprite.o texture.o 
    3 CFLAGS = 
     3CFLAGS = -I.. 
     4OUTPUT = libgamelib3.a 
    45 
    5 all: gamelib3.a subsystems/subsystem.a 
    66 
    7 gamelib3.a: $(OBJECTS) 
    8         ar rcs gamelib3.a $(OBJECTS) 
     7$(OUTPUT): $(OBJECTS) subsystem 
     8        ar rcs $(OUTPUT) $(OBJECTS) 
    99 
    10 subsystems/subsystem.a:  
     10subsystem:  
    1111        $(MAKE) -C subsystems 
    1212 
    1313clean: 
    14         rm *.o gamelib3.a 
     14        $(MAKE) -C subsystems clean      
     15        rm -f *.o $(OUTPUT) 
     16 
Note: See TracChangeset for help on using the changeset viewer.