Subversion Repositories Kolibri OS

Rev

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

  1.  
  2.  
  3. PROG=   acpisrc
  4. SRCS=   ascase.c asconvrt.c asfile.c asmain.c asremove.c astable.c \
  5.         asutils.c osunixdir.c ../../common/getopt.c
  6.  
  7. CFLAGS+= -Wall -O2 -D_LINUX -DACPI_APPLICATION -Wstrict-prototypes -I../../include
  8.  
  9.  
  10. aslmain : $(patsubst %.c,%.o, $(SRCS))
  11.         $(CC) $(LDFLAGS) $(patsubst %.c,%.o, $(SRCS)) -o $(PROG)
  12.  
  13. CLEANFILES= $(PROG)
  14.  
  15. clean :
  16.         rm -f $(CLEANFILES) $(patsubst %.c,%.o, $(SRCS))
  17.  
  18.