Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1.  
  2. CC = gcc
  3. FASM = e:/fasm/fasm.exe
  4. CFLAGS = -c -O2 -fomit-frame-pointer -fno-builtin-printf
  5. LDRHD  = -shared -T ld.x -s --file-alignment 32
  6.  
  7. HFILES:=     syscall.h          \
  8.              pci.h              \
  9.  
  10. SRC_DEP:=    detect.inc
  11.  
  12. AGP_SRC:=    agp.c    
  13.  
  14.  
  15. AGP =  agp.dll
  16.  
  17. all: $(AGP)
  18.  
  19. $(AGP): agp.obj $(SRC_DEP) $(HFILES) Makefile
  20.         wlink name agp.dll SYS nt_dll lib libdrv op offset=0 op nod op maxe=25 op el op STUB=stub.exe op START=_drvEntry @agp.lk
  21.         kpack.exe agp.dll agp.drv
  22.  
  23. agp.obj : agp.c $(SRC_DEP) $(HFILES) Makefile
  24.         $(CC) $(CFLAGS) -o agp.obj agp.c
  25.  
  26.  
  27.  
  28.