Annotation of hatari/src/falcon/Makefile, revision 1.1.1.1

1.1       root        1: # Makefile for Hatari's Falcon support.
                      2: 
                      3: CPUDIR ?= uae-cpu
                      4: 
                      5: # Include settings
                      6: include ../../Makefile.cnf
                      7: 
                      8: # Additional include directories:
                      9: INCFLAGS = -I../.. -I../includes -I../$(CPUDIR) $(CPPFLAGS)
                     10: 
                     11: 
                     12: # Set flags passed to the compiler (e.g. optimization flags)
                     13: #CFLAGS := -g -O2 -Wall
                     14: 
                     15: 
                     16: CFLAGS += $(INCFLAGS) $(SDL_CFLAGS)
                     17: 
                     18: 
                     19: 
                     20: FALCSRCS = videl.c hostscreen.c nvram.c
                     21: ifeq ($(ENABLE_DSP_EMU),1)
                     22: FALCSRCS += dsp.c dsp_cpu.c dsp_disasm.c
                     23: endif
                     24: 
                     25: FALCOBJS = $(FALCSRCS:.c=.o)
                     26: 
                     27: 
                     28: all: $(FALCOBJS)
                     29: 
                     30: 
                     31: clean:
                     32:        $(RM) *.o
                     33: 
                     34: distclean: clean
                     35:        $(RM) Makefile.dep *~ *.bak *.orig
                     36: 
                     37: 
                     38: # Use "make depend" to generate file dependencies:
                     39: Makefile.dep: Makefile
                     40:        $(CC) -M $(CFLAGS) $(FALCSRCS) > Makefile.dep
                     41: 
                     42: depend: Makefile.dep
                     43: 
                     44: -include Makefile.dep

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.