home *** CD-ROM | disk | FTP | other *** search
Makefile | 1997-11-20 | 933 b | 34 lines |
- compileargs = -O2 -fbaserel -noixemul -x none -s -m68000
- compileargd = -fbaserel -noixemul -x none -s -m68000
-
- libs = -lamiga -lscreennotify -lretina -lsysinfo
-
- objects = main.o gaugeclass.o initclean.o display.o handler.o volumes.o idle.o
-
- tinymeter : main.o gaugeclass.o initclean.o display.o handler.o volumes.o idle.o
- gcc -o ram:TinyMeter $(compileargs) $(objects) $(libs)
-
- main.o : main.c tinymeter.h gaugeclass.h
- gcc -c $(compileargs) main.c
-
- gaugeclass.o : gaugeclass.c gaugeclass.h
- gcc -c $(compileargs) gaugeclass.c
-
- initclean.o : initclean.c gaugeclass.h tinymeter.h
- gcc -c $(compileargs) initclean.c
-
- display.o : display.c gaugeclass.h tinymeter.h
- gcc -c $(compileargs) display.c
-
- handler.o : handler.c gaugeclass.h tinymeter.h
- gcc -c $(compileargs) handler.c
-
- volumes.o : volumes.c gaugeclass.h tinymeter.h
- gcc -c $(compileargs) volumes.c
-
- idle.o : idle.c
- gcc -c $(compileargd) idle.c
-
- clean :
- rm $(objects)
-