a63c9b84e2
in a more elegant way, but it works as is, and we need it now. - Add a README and Makefile for the above. Note that this directory should NOT be added to ../Makefile's SUBDIRS.
12 lines
213 B
Makefile
12 lines
213 B
Makefile
CC = gcc
|
|
CFLAGS = -m68030 -O2 -D__progname=program_name -noixemul
|
|
|
|
OBJS = loadbsd.o getopt.o
|
|
LIBS = -lamiga
|
|
|
|
loadbsd: $(OBJS)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o loadbsd $(OBJS) $(LIBS)
|
|
|
|
clean:
|
|
delete $(OBJS) loadbsd
|