Skip to content

Instantly share code, notes, and snippets.

View laparca's full-sized avatar

Samuel R. Sevilla laparca

View GitHub Profile
OBJS=main.o a.o b.o
all: test_duplicated_structs
clean:
rm test_duplicated_struct $(OBJS) || true
test_duplicated_struct: $(OBJS)
$(CXX) -o $@ $(OBJS) $(LDFLAGS)